fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
29 lines (28 loc) • 1.09 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.
*/
import * as runtime from '../runtime';
import { SoftwareInfoDTO } from '../models';
/**
* no description
*/
export declare class InfoApi extends runtime.BaseAPI {
/**
* This method retrieves information about the Jira Service Desk instance such as software version, builds, and related links. **[Permissions](#permissions) required**: None, the user does not need to be logged in.
* Get info
*/
getInfoRaw(): Promise<runtime.ApiResponse<SoftwareInfoDTO>>;
/**
* This method retrieves information about the Jira Service Desk instance such as software version, builds, and related links. **[Permissions](#permissions) required**: None, the user does not need to be logged in.
* Get info
*/
getInfo(): Promise<SoftwareInfoDTO>;
}