appcenter-cli
Version:
Command line tool for Visual Studio App Center
94 lines (89 loc) • 2.2 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.
*/
;
/**
* The information about the app's owner
*
*/
class Owner {
/**
* Create a Owner.
* @property {uuid} id The unique id (UUID) of the owner
* @property {string} [avatarUrl] The avatar URL of the owner
* @property {string} displayName The owner's display name
* @property {string} [email] The owner's email address
* @property {string} name The unique name that used to identify the owner
* @property {string} type The owner type. Can either be 'org' or 'user'.
* Possible values include: 'org', 'user'
*/
constructor() {
}
/**
* Defines the metadata of Owner
*
* @returns {object} metadata of Owner
*
*/
mapper() {
return {
required: false,
serializedName: 'Owner',
type: {
name: 'Composite',
className: 'Owner',
modelProperties: {
id: {
required: true,
serializedName: 'id',
type: {
name: 'String'
}
},
avatarUrl: {
required: false,
serializedName: 'avatar_url',
type: {
name: 'String'
}
},
displayName: {
required: true,
serializedName: 'display_name',
type: {
name: 'String'
}
},
email: {
required: false,
serializedName: 'email',
type: {
name: 'String'
}
},
name: {
required: true,
serializedName: 'name',
type: {
name: 'String'
}
},
type: {
required: true,
serializedName: 'type',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = Owner;