/** * 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 UpdatePlanDto */ export interface UpdatePlanDto { /** * * @type {string} * @memberof UpdatePlanDto */ name?: string; /** * * @type {number} * @memberof UpdatePlanDto */ rank?: number; } /** * Check if a given object implements the UpdatePlanDto interface. */ export declare function instanceOfUpdatePlanDto(value: object): value is UpdatePlanDto; export declare function UpdatePlanDtoFromJSON(json: any): UpdatePlanDto; export declare function UpdatePlanDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePlanDto; export declare function UpdatePlanDtoToJSON(json: any): UpdatePlanDto; export declare function UpdatePlanDtoToJSONTyped(value?: UpdatePlanDto | null, ignoreDiscriminator?: boolean): any;