UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

92 lines (87 loc) 2.06 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'; /** * Class representing a FileAsset. */ class FileAsset { /** * Create a FileAsset. * @property {string} [id] * @property {string} [location] * @property {string} [token] * @property {string} [uploadDomain] * @property {string} [uploadWindowLocation] * @property {string} [urlEncodedToken] */ constructor() { } /** * Defines the metadata of FileAsset * * @returns {object} metadata of FileAsset * */ mapper() { return { required: false, serializedName: 'FileAsset', type: { name: 'Composite', className: 'FileAsset', modelProperties: { id: { required: false, serializedName: 'id', type: { name: 'String' } }, location: { required: false, serializedName: 'location', type: { name: 'String' } }, token: { required: false, serializedName: 'token', type: { name: 'String' } }, uploadDomain: { required: false, serializedName: 'uploadDomain', type: { name: 'String' } }, uploadWindowLocation: { required: false, serializedName: 'uploadWindowLocation', type: { name: 'String' } }, urlEncodedToken: { required: false, serializedName: 'urlEncodedToken', type: { name: 'String' } } } } }; } } module.exports = FileAsset;