Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.42 KB

File metadata and controls

41 lines (32 loc) · 1.42 KB

CallerIdentityRep

Properties

Name Type Description Notes
account_id str [optional]
environment_id str [optional]
project_id str [optional]
environment_name str [optional]
project_name str [optional]
auth_kind str [optional]
token_kind str [optional]
client_id str [optional]
token_name str [optional]
token_id str [optional]
member_id str [optional]
service_token bool [optional]
scopes List[str] [optional]

Example

from launchdarkly_api.models.caller_identity_rep import CallerIdentityRep

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

# convert the object into a dict
caller_identity_rep_dict = caller_identity_rep_instance.to_dict()
# create an instance of CallerIdentityRep from a dict
caller_identity_rep_from_dict = CallerIdentityRep.from_dict(caller_identity_rep_dict)

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