Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 873 Bytes

TenantConnection.md

File metadata and controls

27 lines (19 loc) · 873 Bytes

TenantConnection

Properties

Name Type Description Notes
connection_id str [optional]

Example

from authress.models.tenant_connection import TenantConnection

json = "{}"
# create an instance of TenantConnection from a JSON string
tenant_connection_instance = TenantConnection.from_json(json)
# print the JSON string representation of the object
print TenantConnection.to_json()

# convert the object into a dict
tenant_connection_dict = tenant_connection_instance.to_dict()
# create an instance of TenantConnection from a dict
tenant_connection_from_dict = TenantConnection.from_dict(tenant_connection_dict)

[API Models][API Endpoints][Back to Repo]