| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| advertiser |
str |
|
|
| content_preview |
str |
|
|
| ad_url |
str |
|
|
| image_url |
str |
|
|
from unifapi.models.linkedin_ad_listing import LinkedinAdListing
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinAdListing from a JSON string
linkedin_ad_listing_instance = LinkedinAdListing.from_json(json)
# print the JSON string representation of the object
print(LinkedinAdListing.to_json())
# convert the object into a dict
linkedin_ad_listing_dict = linkedin_ad_listing_instance.to_dict()
# create an instance of LinkedinAdListing from a dict
linkedin_ad_listing_from_dict = LinkedinAdListing.from_dict(linkedin_ad_listing_dict)
[Back to Model list] [Back to API list] [Back to README]