Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 852 Bytes

RawCreds.md

File metadata and controls

30 lines (21 loc) · 852 Bytes

RawCreds

Properties

Name Type Description Notes
access_id str [optional]
access_key str [optional]

Example

from akeyless.models.raw_creds import RawCreds

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

# convert the object into a dict
raw_creds_dict = raw_creds_instance.to_dict()
# create an instance of RawCreds from a dict
raw_creds_from_dict = RawCreds.from_dict(raw_creds_dict)

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