Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1023 Bytes

File metadata and controls

29 lines (20 loc) · 1023 Bytes

BatchSetConfigInput

Properties

Name Type Description Notes
entries List[BatchSetConfigInputEntriesInner]

Example

from stratum.models.batch_set_config_input import BatchSetConfigInput

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

# convert the object into a dict
batch_set_config_input_dict = batch_set_config_input_instance.to_dict()
# create an instance of BatchSetConfigInput from a dict
batch_set_config_input_from_dict = BatchSetConfigInput.from_dict(batch_set_config_input_dict)

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