Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

File metadata and controls

29 lines (21 loc) · 1.1 KB

SearchCampaignResource

Properties

Name Type Description Notes
data List[CampaignSchema] list of campaigns [optional]
meta SearchCampaignResourceMeta [optional]

Example

from bsg_api.models.search_campaign_resource import SearchCampaignResource

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

# convert the object into a dict
search_campaign_resource_dict = search_campaign_resource_instance.to_dict()
# create an instance of SearchCampaignResource from a dict
search_campaign_resource_from_dict = SearchCampaignResource.from_dict(search_campaign_resource_dict)

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