UNPKG

fetch-jsd

Version:

A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.

64 lines (63 loc) 1.65 kB
/** * Service Desk Public REST API * Public REST API for Jira Service Desk * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A change item. * @export * @interface ChangeDetails */ export interface ChangeDetails { /** * The name of the field changed. * @type {string} * @memberof ChangeDetails */ readonly field?: string; /** * The type of the field changed. * @type {string} * @memberof ChangeDetails */ readonly fieldtype?: string; /** * The ID of the field changed. * @type {string} * @memberof ChangeDetails */ readonly fieldId?: string; /** * The details of the original value. * @type {string} * @memberof ChangeDetails */ readonly from?: string; /** * The details of the original value as a string. * @type {string} * @memberof ChangeDetails */ readonly fromString?: string; /** * The details of the new value. * @type {string} * @memberof ChangeDetails */ readonly to?: string; /** * The details of the new value as a string. * @type {string} * @memberof ChangeDetails */ readonly toString?: string; } export declare function ChangeDetailsFromJSON(json: any): ChangeDetails; export declare function ChangeDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangeDetails; export declare function ChangeDetailsToJSON(value?: ChangeDetails): any;