Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.32 KB

ApiPermissionsResponse.md

File metadata and controls

30 lines (21 loc) · 1.32 KB

ApiPermissionsResponse

Properties

Name Type Description Notes
api_name str API endpoint. In order to get a list availbale api enpoints please refer to the GET api-permissions endpoint.
actions List[str] Action allowed for the API endpoint. Basically `CREATE` corresponds to POST endpoints, `READ` to GET endpoints, `UPDATE` to PATCH / PUT endpoints and `DELETE` to DELETE endpoints.

Example

from pfruck_contabo.models.api_permissions_response import ApiPermissionsResponse

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

# convert the object into a dict
api_permissions_response_dict = api_permissions_response_instance.to_dict()
# create an instance of ApiPermissionsResponse from a dict
api_permissions_response_from_dict = ApiPermissionsResponse.from_dict(api_permissions_response_dict)

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