UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

94 lines (89 loc) 2.32 kB
/* * 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. */ 'use strict'; /** * test flight group details for the app. * */ class AppleTestFlightGroupResponse { /** * Create a AppleTestFlightGroupResponse. * @property {string} [id] id of the group. * @property {number} [providerId] provider id of the group. * @property {number} [appAdamId] apple id of the group. * @property {string} [name] name of the group. * @property {boolean} [active] true if group is in active state. * @property {boolean} [isInternalGroup] true if the group is an internal * group. */ constructor() { } /** * Defines the metadata of AppleTestFlightGroupResponse * * @returns {object} metadata of AppleTestFlightGroupResponse * */ mapper() { return { required: false, serializedName: 'AppleTestFlightGroupResponse', type: { name: 'Composite', className: 'AppleTestFlightGroupResponse', modelProperties: { id: { required: false, serializedName: 'id', type: { name: 'String' } }, providerId: { required: false, serializedName: 'providerId', type: { name: 'Number' } }, appAdamId: { required: false, serializedName: 'appAdamId', type: { name: 'Number' } }, name: { required: false, serializedName: 'name', type: { name: 'String' } }, active: { required: false, serializedName: 'active', type: { name: 'Boolean' } }, isInternalGroup: { required: false, serializedName: 'isInternalGroup', type: { name: 'Boolean' } } } } }; } } module.exports = AppleTestFlightGroupResponse;