Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.25 KB

ApiV1FoldersBatchPatchRequest.md

File metadata and controls

29 lines (21 loc) · 1.25 KB

ApiV1FoldersBatchPatchRequest

Properties

Name Type Description Notes
project_slug str The slug of the project where the folder is located.
folders List[ApiV1FoldersBatchPatchRequestFoldersInner]

Example

from infisicalapi_client.models.api_v1_folders_batch_patch_request import ApiV1FoldersBatchPatchRequest

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

# convert the object into a dict
api_v1_folders_batch_patch_request_dict = api_v1_folders_batch_patch_request_instance.to_dict()
# create an instance of ApiV1FoldersBatchPatchRequest from a dict
api_v1_folders_batch_patch_request_from_dict = ApiV1FoldersBatchPatchRequest.from_dict(api_v1_folders_batch_patch_request_dict)

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