/** * 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. */ /** * JSON schema for StatusHistoryRecord POJO * @export * @interface StatusHistoryRecord */ export interface StatusHistoryRecord { /** * * @type {string} * @memberof StatusHistoryRecord */ statusName?: string; /** * * @type {string} * @memberof StatusHistoryRecord */ date?: string; } /** * Check if a given object implements the StatusHistoryRecord interface. */ export declare function instanceOfStatusHistoryRecord(value: object): value is StatusHistoryRecord; export declare function StatusHistoryRecordFromJSON(json: any): StatusHistoryRecord; export declare function StatusHistoryRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): StatusHistoryRecord; export declare function StatusHistoryRecordToJSON(json: any): StatusHistoryRecord; export declare function StatusHistoryRecordToJSONTyped(value?: StatusHistoryRecord | null, ignoreDiscriminator?: boolean): any;