/** * 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. */ /** * The date/time on which the user was authenticated * @export * @interface AuthenticatedOn */ export interface AuthenticatedOn { /** * The date/time on which the user was authenticated * @type {string} * @memberof AuthenticatedOn */ authenticatedOn?: string; } /** * Check if a given object implements the AuthenticatedOn interface. */ export declare function instanceOfAuthenticatedOn(value: object): value is AuthenticatedOn; export declare function AuthenticatedOnFromJSON(json: any): AuthenticatedOn; export declare function AuthenticatedOnFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatedOn; export declare function AuthenticatedOnToJSON(json: any): AuthenticatedOn; export declare function AuthenticatedOnToJSONTyped(value?: AuthenticatedOn | null, ignoreDiscriminator?: boolean): any;