appcenter-cli
Version:
Command line tool for Visual Studio App Center
103 lines (98 loc) • 2.42 kB
JavaScript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
;
/**
* Object returned in response to getting a bug tracker issue related to a
* crash group id
*
*/
class BugTrackerIssueResult {
/**
* Create a BugTrackerIssueResult.
* @property {string} [id]
* @property {string} [url]
* @property {string} [title]
* @property {string} [bugTrackerType] Possible values include: 'github',
* 'vsts', 'jira'
* @property {string} [repoName]
* @property {string} [mobileCenterId]
* @property {string} [eventType]
*/
constructor() {
}
/**
* Defines the metadata of BugTrackerIssueResult
*
* @returns {object} metadata of BugTrackerIssueResult
*
*/
mapper() {
return {
required: false,
serializedName: 'BugTrackerIssueResult',
type: {
name: 'Composite',
className: 'BugTrackerIssueResult',
modelProperties: {
id: {
required: false,
serializedName: 'id',
type: {
name: 'String'
}
},
url: {
required: false,
serializedName: 'url',
type: {
name: 'String'
}
},
title: {
required: false,
serializedName: 'title',
type: {
name: 'String'
}
},
bugTrackerType: {
required: false,
serializedName: 'bug_tracker_type',
type: {
name: 'String'
}
},
repoName: {
required: false,
serializedName: 'repo_name',
type: {
name: 'String'
}
},
mobileCenterId: {
required: false,
serializedName: 'mobile_center_id',
type: {
name: 'String'
}
},
eventType: {
required: false,
serializedName: 'event_type',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = BugTrackerIssueResult;