Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1002 Bytes

IInventorySTS.md

File metadata and controls

31 lines (22 loc) · 1002 Bytes

IInventorySTS

Properties

Name Type Description Notes
api_key str [optional] [readonly]
token str [optional] [readonly]
expiration datetime [optional] [readonly]

Example

from openapi_client.models.i_inventory_sts import IInventorySTS

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

# convert the object into a dict
i_inventory_sts_dict = i_inventory_sts_instance.to_dict()
# create an instance of IInventorySTS from a dict
i_inventory_sts_from_dict = IInventorySTS.from_dict(i_inventory_sts_dict)

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