UNPKG

fetch-jsd

Version:

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

41 lines (40 loc) 1.27 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 { AdditionalCommentDTO } from './'; /** * * @export * @interface CSATFeedbackFullDTO */ export interface CSATFeedbackFullDTO { /** * Indicates the type of feedback, supported values: `csat`. * @type {string} * @memberof CSATFeedbackFullDTO */ type?: string; /** * A numeric representation of the rating, this must be an integer value between 1 and 5. * @type {number} * @memberof CSATFeedbackFullDTO */ rating?: number; /** * (Optional) The comment provided with this feedback. * @type {AdditionalCommentDTO} * @memberof CSATFeedbackFullDTO */ comment?: AdditionalCommentDTO; } export declare function CSATFeedbackFullDTOFromJSON(json: any): CSATFeedbackFullDTO; export declare function CSATFeedbackFullDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CSATFeedbackFullDTO; export declare function CSATFeedbackFullDTOToJSON(value?: CSATFeedbackFullDTO): any;