appcenter-cli
Version:
Command line tool for Visual Studio App Center
68 lines (63 loc) • 1.63 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.
*/
;
/**
* Class representing a XcodeArchiveProject.
*/
class XcodeArchiveProject {
/**
* Create a XcodeArchiveProject.
* @property {string} archiveTargetId The Id of the target to archive
* @property {string} projectName The project to archive container name
* @property {string} [projectPath] Full path of the target project
*/
constructor() {
}
/**
* Defines the metadata of XcodeArchiveProject
*
* @returns {object} metadata of XcodeArchiveProject
*
*/
mapper() {
return {
required: false,
serializedName: 'XcodeArchiveProject',
type: {
name: 'Composite',
className: 'XcodeArchiveProject',
modelProperties: {
archiveTargetId: {
required: true,
serializedName: 'archiveTargetId',
type: {
name: 'String'
}
},
projectName: {
required: true,
serializedName: 'projectName',
type: {
name: 'String'
}
},
projectPath: {
required: false,
serializedName: 'projectPath',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = XcodeArchiveProject;