/** * 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. */ /** * * @export */ export declare const ApprovalState: { readonly APPROVED: "APPROVED"; readonly REVOKED: "REVOKED"; }; export type ApprovalState = typeof ApprovalState[keyof typeof ApprovalState]; export declare function instanceOfApprovalState(value: any): boolean; export declare function ApprovalStateFromJSON(json: any): ApprovalState; export declare function ApprovalStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApprovalState; export declare function ApprovalStateToJSON(value?: ApprovalState | null): any; export declare function ApprovalStateToJSONTyped(value: any, ignoreDiscriminator: boolean): ApprovalState;