UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

61 lines (56 loc) 1.35 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'; /** * App extension information * */ class IosAppExtensionInfo { /** * Create a IosAppExtensionInfo. * @property {string} name App extension name * @property {string} targetBundleIdentifier App extension bundle identifier */ constructor() { } /** * Defines the metadata of IosAppExtensionInfo * * @returns {object} metadata of IosAppExtensionInfo * */ mapper() { return { required: false, serializedName: 'IosAppExtensionInfo', type: { name: 'Composite', className: 'IosAppExtensionInfo', modelProperties: { name: { required: true, serializedName: 'name', type: { name: 'String' } }, targetBundleIdentifier: { required: true, serializedName: 'targetBundleIdentifier', type: { name: 'String' } } } } }; } } module.exports = IosAppExtensionInfo;