import type { BasicUser } from './basic-user';
import type { CredentialsTypeEnum } from './credentials-type-enum';
import type { ProviderTypeEnum } from './provider-type-enum';
export interface CloudStorageRead {
    'id'?: number;
    'owner'?: BasicUser | null;
    'manifests'?: Array<string>;
    'created_date'?: string;
    'updated_date'?: string;
    'provider_type': ProviderTypeEnum;
    'resource': string;
    'display_name': string;
    'credentials_type': CredentialsTypeEnum;
    'specific_attributes'?: string;
    'description'?: string;
    'organization'?: number | null;
}
