Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.08 KB

File metadata and controls

36 lines (27 loc) · 1.08 KB

LinkedinAd

Properties

Name Type Description Notes
id str
content str
ad_url str
image_url str
ad_type str
paid_for_by str
advertiser LinkedinAdAdvertiser
publisher LinkedinAdAdvertiser

Example

from unifapi.models.linkedin_ad import LinkedinAd

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

# convert the object into a dict
linkedin_ad_dict = linkedin_ad_instance.to_dict()
# create an instance of LinkedinAd from a dict
linkedin_ad_from_dict = LinkedinAd.from_dict(linkedin_ad_dict)

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