Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.32 KB

AccessRequest.md

File metadata and controls

33 lines (25 loc) · 1.32 KB

AccessRequest

The access requested by a user.

Properties

Name Type Description Notes
request_id str Unique identifier for the request. [readonly]
last_updated datetime The expected last time the request was updated [optional] [readonly]
status str Current status of the access request. [optional] [readonly]
access AccessTemplate
links AccountLinks [optional]
tags Dict[str, str] The tags associated with this resource, this property is an map. { key1: value1, key2: value2 } [optional]

Example

from authress.models.access_request import AccessRequest

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

# convert the object into a dict
access_request_dict = access_request_instance.to_dict()
# create an instance of AccessRequest from a dict
access_request_from_dict = AccessRequest.from_dict(access_request_dict)

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