Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

BaseLinkRequestMetatag

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.base_link_request_metatag import BaseLinkRequestMetatag

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

# convert the object into a dict
base_link_request_metatag_dict = base_link_request_metatag_instance.to_dict()
# create an instance of BaseLinkRequestMetatag from a dict
base_link_request_metatag_from_dict = BaseLinkRequestMetatag.from_dict(base_link_request_metatag_dict)

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