/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ChangeStatusDto */ export interface ChangeStatusDto { /** * The new status. * @type {string} * @memberof ChangeStatusDto */ status: string; /** * The due time. * @type {Date} * @memberof ChangeStatusDto */ dueTime?: Date | null; /** * True to check referrers of this content. * @type {boolean} * @memberof ChangeStatusDto */ checkReferrers?: boolean; } /** * Check if a given object implements the ChangeStatusDto interface. */ export declare function instanceOfChangeStatusDto(value: any): value is ChangeStatusDto; export declare function ChangeStatusDtoFromJSON(json: any): ChangeStatusDto; export declare function ChangeStatusDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ChangeStatusDto; export declare function ChangeStatusDtoToJSON(value?: ChangeStatusDto | null, _ignoreDiscriminator?: boolean): any;