/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * In order to download a file the user will need to meet an access requirement associated with the file. * @export * @interface MeetAccessRequirement */ export interface MeetAccessRequirement { /** * * @type {string} * @memberof MeetAccessRequirement */ concreteType: MeetAccessRequirementConcreteTypeEnum; /** * The ID of the access requirement that the user needs to meet in order to download a file. * @type {number} * @memberof MeetAccessRequirement */ accessRequirementId?: number; } /** * @export */ export declare const MeetAccessRequirementConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_MeetAccessRequirement: "org.sagebionetworks.repo.model.download.MeetAccessRequirement"; }; export type MeetAccessRequirementConcreteTypeEnum = typeof MeetAccessRequirementConcreteTypeEnum[keyof typeof MeetAccessRequirementConcreteTypeEnum]; /** * Check if a given object implements the MeetAccessRequirement interface. */ export declare function instanceOfMeetAccessRequirement(value: object): value is MeetAccessRequirement; export declare function MeetAccessRequirementFromJSON(json: any): MeetAccessRequirement; export declare function MeetAccessRequirementFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetAccessRequirement; export declare function MeetAccessRequirementToJSON(json: any): MeetAccessRequirement; export declare function MeetAccessRequirementToJSONTyped(value?: MeetAccessRequirement | null, ignoreDiscriminator?: boolean): any;