Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

CreateLinkRequestMetatag.md

File metadata and controls

32 lines (23 loc) · 1.26 KB

CreateLinkRequestMetatag

Custom metadata for social previews

Properties

Name Type Description Notes
title str Title for the link [optional]
description str Description for the link [optional]
image str Image URL for the link. Recommended: 1200X630px<br>Maximum size: 3Mb - Formats: PNG, JPEG, WebP and GIF. [optional]

Example

from urlr.models.create_link_request_metatag import CreateLinkRequestMetatag

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

# convert the object into a dict
create_link_request_metatag_dict = create_link_request_metatag_instance.to_dict()
# create an instance of CreateLinkRequestMetatag from a dict
create_link_request_metatag_from_dict = CreateLinkRequestMetatag.from_dict(create_link_request_metatag_dict)

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