fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
59 lines (58 loc) • 1.95 kB
TypeScript
/**
* 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.
*/
/**
* Details of user or system associated with a issue history metadata item.
* @export
* @interface HistoryMetadataParticipant
*/
export interface HistoryMetadataParticipant {
[key: string]: object | any;
/**
* The ID of the user or system associated with a history record.
* @type {string}
* @memberof HistoryMetadataParticipant
*/
id?: string;
/**
* The display name of the user or system associated with a history record.
* @type {string}
* @memberof HistoryMetadataParticipant
*/
displayName?: string;
/**
* The key of the display name of the user or system associated with a history record.
* @type {string}
* @memberof HistoryMetadataParticipant
*/
displayNameKey?: string;
/**
* The type of the user or system associated with a history record.
* @type {string}
* @memberof HistoryMetadataParticipant
*/
type?: string;
/**
* The URL to an avatar for the user or system associated with a history record.
* @type {string}
* @memberof HistoryMetadataParticipant
*/
avatarUrl?: string;
/**
* The URL of the user or system associated with a history record.
* @type {string}
* @memberof HistoryMetadataParticipant
*/
url?: string;
}
export declare function HistoryMetadataParticipantFromJSON(json: any): HistoryMetadataParticipant;
export declare function HistoryMetadataParticipantFromJSONTyped(json: any, ignoreDiscriminator: boolean): HistoryMetadataParticipant;
export declare function HistoryMetadataParticipantToJSON(value?: HistoryMetadataParticipant): any;