Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.47 KB

File metadata and controls

33 lines (24 loc) · 1.47 KB

ApiV1CampaignsTypeSchemaAdsGet200Response

Properties

Name Type Description Notes
campaign_type str [optional]
campaign_ad_type int 0 if not scoped to a campaign. [optional]
fields List[object] [optional]
creative_choice List[str] [optional]
notes List[str] [optional]

Example

from goadserver.models.api_v1_campaigns_type_schema_ads_get200_response import ApiV1CampaignsTypeSchemaAdsGet200Response

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

# convert the object into a dict
api_v1_campaigns_type_schema_ads_get200_response_dict = api_v1_campaigns_type_schema_ads_get200_response_instance.to_dict()
# create an instance of ApiV1CampaignsTypeSchemaAdsGet200Response from a dict
api_v1_campaigns_type_schema_ads_get200_response_from_dict = ApiV1CampaignsTypeSchemaAdsGet200Response.from_dict(api_v1_campaigns_type_schema_ads_get200_response_dict)

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