Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.22 KB

File metadata and controls

29 lines (21 loc) · 1.22 KB

CampaignPrice200Response

Properties

Name Type Description Notes
price float estimate campaign cost Please note: price defined only as the response to create campaign or calculate price requests [optional]
currency str The currency code of the account. Specified according to the ISO-4217 standard [optional]

Example

from bsg_api.models.campaign_price200_response import CampaignPrice200Response

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

# convert the object into a dict
campaign_price200_response_dict = campaign_price200_response_instance.to_dict()
# create an instance of CampaignPrice200Response from a dict
campaign_price200_response_from_dict = CampaignPrice200Response.from_dict(campaign_price200_response_dict)

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