microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
326e032d29394b48bb49c3013f46b0f4c14c26f7

Branches

Tags

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

Clone

HTTPS

Download ZIP

lib/app-center-node-client/src/codepush/models/codePushReleaseLabel.js

47lines · 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 * Class representing a CodePushReleaseLabel.
11 */
12class CodePushReleaseLabel {
13 /**
14 * Create a CodePushReleaseLabel.
15 * @member {string} [label]
16 */
17 constructor() {
18 }
19
20 /**
21 * Defines the metadata of CodePushReleaseLabel
22 *
23 * @returns {object} metadata of CodePushReleaseLabel
24 *
25 */
26 mapper() {
27 return {
28 required: false,
29 serializedName: 'CodePushReleaseLabel',
30 type: {
31 name: 'Composite',
32 className: 'CodePushReleaseLabel',
33 modelProperties: {
34 label: {
35 required: false,
36 serializedName: 'label',
37 type: {
38 name: 'String'
39 }
40 }
41 }
42 }
43 };
44 }
45}
46
47module.exports = CodePushReleaseLabel;
48