StoreProductΒΆ

Inherits: RefCounted < Object

Represents a product available for purchase in the App Store.

DescriptionΒΆ

This class contains information about a product, such as its ID, display name, description, and price. It is returned by StoreKitManager.request_products().

PropertiesΒΆ

String

description_value

""

String

display_name

""

String

display_price

""

bool

is_family_shareable

false

String

json_representation

""

float

price

0.0

String

product_id

""


Property DescriptionsΒΆ

String description_value = "" πŸ”—

  • String get_description_value()

A localized description of the product.


String display_name = "" πŸ”—

The localized name of the product.


String display_price = "" πŸ”—

The formatted price of the product, including currency symbol (e.g., β€œ$0.99”).


bool is_family_shareable = false πŸ”—

  • bool get_is_family_shareable()

Whether the product is shareable with family members.


String json_representation = "" πŸ”—

  • String get_json_representation()

A JSON string representation of the underlying StoreKit product, useful for debugging or accessing properties not exposed directly.


float price = 0.0 πŸ”—

The price of the product as a number.


String product_id = "" πŸ”—

The unique identifier of the product.