appcenter-cli
Version:
Command line tool for Visual Studio App Center
113 lines (108 loc) • 2.98 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.
*/
;
/**
* ExternalStoreResponse
*
*/
class ExternalStoreResponse {
/**
* Create a ExternalStoreResponse.
* @property {string} [id] Store id
* @property {string} [name] Store Name
* @property {string} [type] Store Type
* @property {string} [track] Store track. Possible values include:
* 'production', 'alpha', 'beta', 'testflight-internal',
* 'testflight-external'
* @property {array} [intuneDetails] store details for intune
* @property {string} [serviceConnectionId] Id for the shared service
* connection. In case of Apple / GooglePlay stores, this connection will be
* used to connect to the Apple / Google stores in App Center.
* @property {string} [createdBy] user id of the user who created the store.
*/
constructor() {
}
/**
* Defines the metadata of ExternalStoreResponse
*
* @returns {object} metadata of ExternalStoreResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'ExternalStoreResponse',
type: {
name: 'Composite',
className: 'ExternalStoreResponse',
modelProperties: {
id: {
required: false,
serializedName: 'id',
type: {
name: 'String'
}
},
name: {
required: false,
serializedName: 'name',
type: {
name: 'String'
}
},
type: {
required: false,
serializedName: 'type',
type: {
name: 'String'
}
},
track: {
required: false,
serializedName: 'track',
type: {
name: 'String'
}
},
intuneDetails: {
required: false,
serializedName: 'intune_details',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'IntuneStoreResponseElementType',
type: {
name: 'Composite',
className: 'IntuneStoreResponse'
}
}
}
},
serviceConnectionId: {
required: false,
serializedName: 'service_connection_id',
type: {
name: 'String'
}
},
createdBy: {
required: false,
serializedName: 'created_by',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = ExternalStoreResponse;