UNPKG

fetch-jsd

Version:

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

92 lines (91 loc) 2.71 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. */ import { HistoryMetadataParticipant } from './'; /** * Details of issue history metadata. * @export * @interface HistoryMetadata */ export interface HistoryMetadata { [key: string]: object | any; /** * The type of the history record. * @type {string} * @memberof HistoryMetadata */ type?: string; /** * The description of the history record. * @type {string} * @memberof HistoryMetadata */ description?: string; /** * The description key of the history record. * @type {string} * @memberof HistoryMetadata */ descriptionKey?: string; /** * The activity described in the history record. * @type {string} * @memberof HistoryMetadata */ activityDescription?: string; /** * The key of the activity described in the history record. * @type {string} * @memberof HistoryMetadata */ activityDescriptionKey?: string; /** * The description of the email address associated the history record. * @type {string} * @memberof HistoryMetadata */ emailDescription?: string; /** * The description key of the email address associated the history record. * @type {string} * @memberof HistoryMetadata */ emailDescriptionKey?: string; /** * Details of the user whose action created the history record. * @type {HistoryMetadataParticipant} * @memberof HistoryMetadata */ actor?: HistoryMetadataParticipant; /** * Details of the system that generated the history record. * @type {HistoryMetadataParticipant} * @memberof HistoryMetadata */ generator?: HistoryMetadataParticipant; /** * Details of the cause that triggered the creation the history record. * @type {HistoryMetadataParticipant} * @memberof HistoryMetadata */ cause?: HistoryMetadataParticipant; /** * Additional arbitrary information about the history record. * @type {{ [key: string]: string; }} * @memberof HistoryMetadata */ extraData?: { [key: string]: string; }; } export declare function HistoryMetadataFromJSON(json: any): HistoryMetadata; export declare function HistoryMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): HistoryMetadata; export declare function HistoryMetadataToJSON(value?: HistoryMetadata): any;