fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
56 lines (55 loc) • 2.03 kB
JavaScript
// tslint:disable
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
const runtime_1 = require("../runtime");
const _1 = require("./");
function UserDTOFromJSON(json) {
return UserDTOFromJSONTyped(json, false);
}
exports.UserDTOFromJSON = UserDTOFromJSON;
function UserDTOFromJSONTyped(json, ignoreDiscriminator) {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'accountId': !runtime_1.exists(json, 'accountId') ? undefined : json['accountId'],
'name': !runtime_1.exists(json, 'name') ? undefined : json['name'],
'key': !runtime_1.exists(json, 'key') ? undefined : json['key'],
'emailAddress': !runtime_1.exists(json, 'emailAddress') ? undefined : json['emailAddress'],
'displayName': !runtime_1.exists(json, 'displayName') ? undefined : json['displayName'],
'active': !runtime_1.exists(json, 'active') ? undefined : json['active'],
'timeZone': !runtime_1.exists(json, 'timeZone') ? undefined : json['timeZone'],
'_links': !runtime_1.exists(json, '_links') ? undefined : _1.UserLinkDTOFromJSON(json['_links']),
};
}
exports.UserDTOFromJSONTyped = UserDTOFromJSONTyped;
function UserDTOToJSON(value) {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'accountId': value.accountId,
'name': value.name,
'key': value.key,
'emailAddress': value.emailAddress,
'displayName': value.displayName,
'active': value.active,
'timeZone': value.timeZone,
'_links': _1.UserLinkDTOToJSON(value._links),
};
}
exports.UserDTOToJSON = UserDTOToJSON;
;