/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.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 CreatePlanDto */ export interface CreatePlanDto { /** * * @type {string} * @memberof CreatePlanDto */ name: string; /** * * @type {number} * @memberof CreatePlanDto */ rank: number; } /** * Check if a given object implements the CreatePlanDto interface. */ export declare function instanceOfCreatePlanDto(value: object): value is CreatePlanDto; export declare function CreatePlanDtoFromJSON(json: any): CreatePlanDto; export declare function CreatePlanDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePlanDto; export declare function CreatePlanDtoToJSON(json: any): CreatePlanDto; export declare function CreatePlanDtoToJSONTyped(value?: CreatePlanDto | null, ignoreDiscriminator?: boolean): any;