microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
86466695ed3443c9a6a1facdfd9bce89c668afbf

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

lib/app-center-node-client/src/distribute/models/appleMappingResponse.js

75lines · modecode

1/*
2 * Code generated by Microsoft (R) AutoRest Code Generator.
3 * Changes may cause incorrect behavior and will be lost if the code is
4 * regenerated.
5 */
6
7'use strict';
8
9/**
10 * Apple Mapping Request Type
11 *
12 */
13class AppleMappingResponse {
14 /**
15 * Create a AppleMappingResponse.
16 * @member {string} [appId] ID of the apple application in Mobile Center
17 * @member {string} [serviceConnectionId] Id for the shared service
18 * connection. In case of Apple AppStore, this connection will be used to
19 * create and connect to the Apple AppStore in Mobile Center.
20 * @member {string} [appleId] ID of the apple application in apple store
21 * @member {string} [teamIdentifier] ID of the Team associated with the app
22 * in apple store
23 */
24 constructor() {
25 }
26
27 /**
28 * Defines the metadata of AppleMappingResponse
29 *
30 * @returns {object} metadata of AppleMappingResponse
31 *
32 */
33 mapper() {
34 return {
35 required: false,
36 serializedName: 'AppleMappingResponse',
37 type: {
38 name: 'Composite',
39 className: 'AppleMappingResponse',
40 modelProperties: {
41 appId: {
42 required: false,
43 serializedName: 'app_id',
44 type: {
45 name: 'String'
46 }
47 },
48 serviceConnectionId: {
49 required: false,
50 serializedName: 'service_connection_id',
51 type: {
52 name: 'String'
53 }
54 },
55 appleId: {
56 required: false,
57 serializedName: 'apple_id',
58 type: {
59 name: 'String'
60 }
61 },
62 teamIdentifier: {
63 required: false,
64 serializedName: 'team_identifier',
65 type: {
66 name: 'String'
67 }
68 }
69 }
70 }
71 };
72 }
73}
74
75module.exports = AppleMappingResponse;
76