/** * 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 TermsOfServiceState: { readonly MUST_AGREE_NOW: "MUST_AGREE_NOW"; readonly MUST_AGREE_SOON: "MUST_AGREE_SOON"; readonly UP_TO_DATE: "UP_TO_DATE"; }; export type TermsOfServiceState = typeof TermsOfServiceState[keyof typeof TermsOfServiceState]; export declare function instanceOfTermsOfServiceState(value: any): boolean; export declare function TermsOfServiceStateFromJSON(json: any): TermsOfServiceState; export declare function TermsOfServiceStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TermsOfServiceState; export declare function TermsOfServiceStateToJSON(value?: TermsOfServiceState | null): any; export declare function TermsOfServiceStateToJSONTyped(value: any, ignoreDiscriminator: boolean): TermsOfServiceState;