/** * 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 StatusInfoDto */ export interface StatusInfoDto { /** * The name of the status. * @type {string} * @memberof StatusInfoDto */ status: string; /** * The color of the status. * @type {string} * @memberof StatusInfoDto */ color: string; } /** * Check if a given object implements the StatusInfoDto interface. */ export declare function instanceOfStatusInfoDto(value: any): value is StatusInfoDto; export declare function StatusInfoDtoFromJSON(json: any): StatusInfoDto; export declare function StatusInfoDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): StatusInfoDto; export declare function StatusInfoDtoToJSON(value?: StatusInfoDto | null, _ignoreDiscriminator?: boolean): any;