appcenter-cli
Version:
Command line tool for Visual Studio App Center
113 lines (107 loc) • 2.73 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.
*/
;
const models = require('./index');
/**
* Class representing a OrganizationResponseInternal.
* @extends models['OrganizationResponse']
*/
class OrganizationResponseInternal extends models['OrganizationResponse'] {
/**
* Create a OrganizationResponseInternal.
* @property {array} [featureFlags] The feature flags that are enabled for
* this organization
*/
constructor() {
super();
}
/**
* Defines the metadata of OrganizationResponseInternal
*
* @returns {object} metadata of OrganizationResponseInternal
*
*/
mapper() {
return {
required: false,
serializedName: 'OrganizationResponseInternal',
type: {
name: 'Composite',
className: 'OrganizationResponseInternal',
modelProperties: {
id: {
required: true,
serializedName: 'id',
type: {
name: 'String'
}
},
displayName: {
required: true,
serializedName: 'display_name',
type: {
name: 'String'
}
},
name: {
required: true,
serializedName: 'name',
type: {
name: 'String'
}
},
avatarUrl: {
required: false,
serializedName: 'avatar_url',
type: {
name: 'String'
}
},
origin: {
required: true,
serializedName: 'origin',
type: {
name: 'String'
}
},
createdAt: {
required: true,
serializedName: 'created_at',
type: {
name: 'String'
}
},
updatedAt: {
required: true,
serializedName: 'updated_at',
type: {
name: 'String'
}
},
featureFlags: {
required: false,
serializedName: 'feature_flags',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
}
}
}
};
}
}
module.exports = OrganizationResponseInternal;