Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.4 KB

Merchant.md

File metadata and controls

48 lines (39 loc) · 2.4 KB

Merchant

A Merchant project.

Properties

Name Type Description Notes
access_token str The Google merchant access token
account_id int The account id [optional] [readonly]
automatic_synchronization bool Whether the Merchant data will be synchronized automatically [optional]
created_at datetime The create date-time [optional] [readonly]
custom_seller str Custom seller entity - if applicable. [optional]
dataset_domain str The custom domain (for example data.example.org) [optional]
dataset_name str The dataset path (for example /data) [optional]
deleted bool True if the merchant has been deleted [default to False]
deleted_at datetime The delete date-time [optional] [readonly]
google_merchant_id int The Google Merchant id
id int The unique id [optional] [readonly]
ignore_brand bool Whether to ignore the `brand` property during validation [optional]
ignore_image bool Whether to ignore the `image` property during validation [optional]
modified_at datetime The last modified date-time [optional] [readonly]
publisher_name str The publisher name (shows in schema publisher)
refresh_token str The Google merchant refresh token
url str The website URL [optional]
url_strategy str Which strategy to use to write the url schema. [optional] [default to 'canonicalLinkAndLink']
writer_service str How to write the merchant data to the graph, if unsure, do not set anything (by default `wordpressMerchantWriter`). [optional]

Example

from wordlift_client.models.merchant import Merchant

# TODO update the JSON string below
json = "{}"
# create an instance of Merchant from a JSON string
merchant_instance = Merchant.from_json(json)
# print the JSON string representation of the object
print(Merchant.to_json())

# convert the object into a dict
merchant_dict = merchant_instance.to_dict()
# create an instance of Merchant from a dict
merchant_from_dict = Merchant.from_dict(merchant_dict)

[Back to Model list] [Back to API list] [Back to README]