Skip to content

CreateSample

Properties

Name Type Description Notes
name str The name of the sample.
description str The description of the sample. [optional]
tags OptionalSampleTags [optional]

Example

from libica.openapi.v3.models.create_sample import CreateSample

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

# convert the object into a dict
create_sample_dict = create_sample_instance.to_dict()
# create an instance of CreateSample from a dict
create_sample_from_dict = CreateSample.from_dict(create_sample_dict)

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