microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9588b66e62774c169bd461ef2aac4bc9535875bb

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 · modepreview

/*
 * 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 CodePushReleaseLabel.
 */
class CodePushReleaseLabel {
  /**
   * Create a CodePushReleaseLabel.
   * @member {string} [label]
   */
  constructor() {
  }

  /**
   * Defines the metadata of CodePushReleaseLabel
   *
   * @returns {object} metadata of CodePushReleaseLabel
   *
   */
  mapper() {
    return {
      required: false,
      serializedName: 'CodePushReleaseLabel',
      type: {
        name: 'Composite',
        className: 'CodePushReleaseLabel',
        modelProperties: {
          label: {
            required: false,
            serializedName: 'label',
            type: {
              name: 'String'
            }
          }
        }
      }
    };
  }
}

module.exports = CodePushReleaseLabel;