fetch-jsd
Version:
40 lines • 1.25 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.
*/
import { exists } from '../runtime';
export function IncludedFieldsFromJSON(json) {
return IncludedFieldsFromJSONTyped(json, false);
}
export function IncludedFieldsFromJSONTyped(json, ignoreDiscriminator) {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'included': !exists(json, 'included') ? undefined : json['included'],
'actuallyIncluded': !exists(json, 'actuallyIncluded') ? undefined : json['actuallyIncluded'],
'excluded': !exists(json, 'excluded') ? undefined : json['excluded'],
};
}
export function IncludedFieldsToJSON(value) {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'included': value.included,
'actuallyIncluded': value.actuallyIncluded,
'excluded': value.excluded,
};
}
//# sourceMappingURL=IncludedFields.js.map