UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

73 lines (68 loc) 1.84 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'; /** * Apple credentials needed to log into the Apple Developer Portal and access * provisioning profiles * */ class AvailabilityOfDevicesRequest { /** * Create a AvailabilityOfDevicesRequest. * @property {string} [username] The username for the Apple Developer * account. * @property {string} [password] The password for the Apple Developer * account. * @property {string} [serviceConnectionId] The service_connection_id of the * stored Apple credentials instad of username, password. */ constructor() { } /** * Defines the metadata of AvailabilityOfDevicesRequest * * @returns {object} metadata of AvailabilityOfDevicesRequest * */ mapper() { return { required: false, serializedName: 'AvailabilityOfDevicesRequest', type: { name: 'Composite', className: 'AvailabilityOfDevicesRequest', modelProperties: { username: { required: false, serializedName: 'username', type: { name: 'String' } }, password: { required: false, serializedName: 'password', type: { name: 'String' } }, serviceConnectionId: { required: false, serializedName: 'service_connection_id', type: { name: 'String' } } } } }; } } module.exports = AvailabilityOfDevicesRequest;