Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

MerchantEntry

A Merchant Entry with the Google Merchant Id and the Website URL

Properties

Name Type Description Notes
google_merchant_id int The Google Merchant id
website_url str The Google Merchant Website URL

Example

from wordlift_client.models.merchant_entry import MerchantEntry

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

# convert the object into a dict
merchant_entry_dict = merchant_entry_instance.to_dict()
# create an instance of MerchantEntry from a dict
merchant_entry_from_dict = MerchantEntry.from_dict(merchant_entry_dict)

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