/** * 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. */ /** * Information about the user agreement for a specific version of the TOS * @export * @interface TermsOfServiceAgreement */ export interface TermsOfServiceAgreement { /** * The date/time when the user signed the version of the TOS. * @type {string} * @memberof TermsOfServiceAgreement */ agreedOn?: string; /** * The version that the user agreed on. * @type {string} * @memberof TermsOfServiceAgreement */ version?: string; } /** * Check if a given object implements the TermsOfServiceAgreement interface. */ export declare function instanceOfTermsOfServiceAgreement(value: object): value is TermsOfServiceAgreement; export declare function TermsOfServiceAgreementFromJSON(json: any): TermsOfServiceAgreement; export declare function TermsOfServiceAgreementFromJSONTyped(json: any, ignoreDiscriminator: boolean): TermsOfServiceAgreement; export declare function TermsOfServiceAgreementToJSON(json: any): TermsOfServiceAgreement; export declare function TermsOfServiceAgreementToJSONTyped(value?: TermsOfServiceAgreement | null, ignoreDiscriminator?: boolean): any;