Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.56 KB

UpdateMetadataRequestV2.md

File metadata and controls

35 lines (26 loc) · 1.56 KB

UpdateMetadataRequestV2

Properties

Name Type Description Notes
author str The author of the function. [optional]
description str A description of the function [optional]
icon_url str An url to an icon that represents this function. [optional]
category str A category for this function (Deprecated: use tags to categorise your functions) [optional]
documentation_url str External url that document this function. [optional]
tags List[Tag] Tags associated with this function. [optional]
friendly_name str Display title for this function. [optional]

Example

from waylay.services.registry.models.update_metadata_request_v2 import UpdateMetadataRequestV2

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

# convert the object into a dict
update_metadata_request_v2_dict = update_metadata_request_v2_instance.to_dict()
# create an instance of UpdateMetadataRequestV2 from a dict
update_metadata_request_v2_form_dict = update_metadata_request_v2.from_dict(update_metadata_request_v2_dict)

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