/** * 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. */ import type { Renewal } from './Renewal'; import type { Request } from './Request'; /** * @type RequestInterface * This is the base interface that all Request implements. * @export */ export type RequestInterface = { concreteType: 'org.sagebionetworks.repo.model.dataaccess.Renewal'; } & Renewal | { concreteType: 'org.sagebionetworks.repo.model.dataaccess.Request'; } & Request; export declare function RequestInterfaceFromJSON(json: any): RequestInterface; export declare function RequestInterfaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestInterface; export declare function RequestInterfaceToJSON(json: any): any; export declare function RequestInterfaceToJSONTyped(value?: RequestInterface | null, ignoreDiscriminator?: boolean): any;