| 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 |
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)