Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.15 KB

V1beta1SecretCredential.md

File metadata and controls

31 lines (23 loc) · 1.15 KB

V1beta1SecretCredential

Properties

Name Type Description Notes
id str [optional]
title str [optional]
secret str [optional] [readonly]
created_at datetime The time when the secret was created. [optional]

Example

from frontier_api.models.v1beta1_secret_credential import V1beta1SecretCredential

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

# convert the object into a dict
v1beta1_secret_credential_dict = v1beta1_secret_credential_instance.to_dict()
# create an instance of V1beta1SecretCredential from a dict
v1beta1_secret_credential_form_dict = v1beta1_secret_credential.from_dict(v1beta1_secret_credential_dict)

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