/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.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 PartiallyUpdateSprint */ export interface PartiallyUpdateSprint { /** * * @type {number} * @memberof PartiallyUpdateSprint */ id?: number; /** * * @type {string} * @memberof PartiallyUpdateSprint */ self?: string; /** * * @type {string} * @memberof PartiallyUpdateSprint */ state?: string; /** * * @type {string} * @memberof PartiallyUpdateSprint */ name?: string; /** * * @type {string} * @memberof PartiallyUpdateSprint */ startDate?: string; /** * * @type {string} * @memberof PartiallyUpdateSprint */ endDate?: string; /** * * @type {string} * @memberof PartiallyUpdateSprint */ completeDate?: string; /** * * @type {number} * @memberof PartiallyUpdateSprint */ originBoardId?: number; /** * * @type {string} * @memberof PartiallyUpdateSprint */ goal?: string; } export declare function PartiallyUpdateSprintFromJSON(json: any): PartiallyUpdateSprint; export declare function PartiallyUpdateSprintFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartiallyUpdateSprint; export declare function PartiallyUpdateSprintToJSON(value?: PartiallyUpdateSprint): any;