appcenter-cli
Version:
Command line tool for Visual Studio App Center
61 lines (56 loc) • 1.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.
*/
;
/**
* Class representing a OrganizationPatchRequest.
*/
class OrganizationPatchRequest {
/**
* Create a OrganizationPatchRequest.
* @property {string} [displayName] The full (friendly) name of the
* organization.
* @property {string} [name] The name of the organization used in URLs
*/
constructor() {
}
/**
* Defines the metadata of OrganizationPatchRequest
*
* @returns {object} metadata of OrganizationPatchRequest
*
*/
mapper() {
return {
required: false,
serializedName: 'OrganizationPatchRequest',
type: {
name: 'Composite',
className: 'OrganizationPatchRequest',
modelProperties: {
displayName: {
required: false,
serializedName: 'display_name',
type: {
name: 'String'
}
},
name: {
required: false,
serializedName: 'name',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = OrganizationPatchRequest;