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

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