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/appleTestFlightGroupsResponse.js

72lines · 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 Test Flight Groups Response Type
11 *
12 */
13class AppleTestFlightGroupsResponse {
14 /**
15 * Create a AppleTestFlightGroupsResponse.
16 * @member {string} [id] id of the group.
17 * @member {number} [providerId] provider id of the group.
18 * @member {number} [appleId] apple id of the group.
19 * @member {string} [name] name of the group.
20 */
21 constructor() {
22 }
23
24 /**
25 * Defines the metadata of AppleTestFlightGroupsResponse
26 *
27 * @returns {object} metadata of AppleTestFlightGroupsResponse
28 *
29 */
30 mapper() {
31 return {
32 required: false,
33 serializedName: 'AppleTestFlightGroupsResponse',
34 type: {
35 name: 'Composite',
36 className: 'AppleTestFlightGroupsResponse',
37 modelProperties: {
38 id: {
39 required: false,
40 serializedName: 'id',
41 type: {
42 name: 'String'
43 }
44 },
45 providerId: {
46 required: false,
47 serializedName: 'providerId',
48 type: {
49 name: 'Number'
50 }
51 },
52 appleId: {
53 required: false,
54 serializedName: 'appleId',
55 type: {
56 name: 'Number'
57 }
58 },
59 name: {
60 required: false,
61 serializedName: 'name',
62 type: {
63 name: 'String'
64 }
65 }
66 }
67 }
68 };
69 }
70}
71
72module.exports = AppleTestFlightGroupsResponse;
73