Skip to content

featurebyte.OnlineStore.info

info(
verbose: bool=False
) -> Dict[str, Any]

Description

Returns a dictionary that summarizes the essential information of the online store represented by the OnlineStore object. The dictionary contains the following keys:

  • name: The name of the online store.
  • created_at: The timestamp indicating when the online store owas created.
  • updated_at: The timestamp indicating when the OnlineStore object was last updated.
  • details: The configuration details of the online store.
  • description: The description of the online store.

Parameters

  • verbose: bool
    default: False
    The parameter "verbose" in the current state of the code does not have any impact on the output.

Returns

  • Dict[str, Any]
    Key-value mapping of properties of the object.

Examples

>>> online_store = fb.OnlineStore.get(<online_store_name>)
>>> online_store.info()