-
Daniel Göbel authoredDaniel Göbel authored
BucketPermissionIn.ts 697 B
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { Permission } from './Permission';
export type BucketPermissionIn = {
/**
* Start date of permission as UNIX timestamp
*/
from_timestamp?: (number | null);
/**
* End date of permission as UNIX timestamp
*/
to_timestamp?: (number | null);
/**
* Prefix of subfolder
*/
file_prefix?: (string | null);
/**
* Permission
*/
permission?: (Permission | string);
/**
* UID of the grantee
*/
uid: string;
/**
* Name of Bucket
*/
bucket_name: string;
};