Custom metadata for social previews
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] |
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)