Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1018 Bytes

File metadata and controls

30 lines (22 loc) · 1018 Bytes

VdsSoftware

ПО из маркетплейса.

Properties

Name Type Description Notes
id object ID ПО из маркетплейса. [optional]
name object Название ПО из маркетплейса. [optional]

Example

from timeweb_cloud_api.models.vds_software import VdsSoftware

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

# convert the object into a dict
vds_software_dict = vds_software_instance.to_dict()
# create an instance of VdsSoftware from a dict
vds_software_form_dict = vds_software.from_dict(vds_software_dict)

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