@gobodo/gobodo-api-promise 0.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +794 -0
- package/dist/ApiClient.js +720 -0
- package/dist/api/ActionTypesApi.js +113 -0
- package/dist/api/AdCampaignsApi.js +500 -0
- package/dist/api/AdManagementApi.js +722 -0
- package/dist/api/AdminDataManagementApi.js +111 -0
- package/dist/api/AdsApi.js +384 -0
- package/dist/api/AttachmentsApi.js +465 -0
- package/dist/api/AuthenticationApi.js +418 -0
- package/dist/api/CategoriesApi.js +451 -0
- package/dist/api/CommentsApi.js +520 -0
- package/dist/api/ContentManagementApi.js +1491 -0
- package/dist/api/ConversationsApi.js +559 -0
- package/dist/api/DataSheetImportsApi.js +1066 -0
- package/dist/api/DefaultApi.js +696 -0
- package/dist/api/DocumentsApi.js +807 -0
- package/dist/api/EntryPartsApi.js +847 -0
- package/dist/api/FacebookApi.js +88 -0
- package/dist/api/FieldsApi.js +243 -0
- package/dist/api/FilesApi.js +116 -0
- package/dist/api/FormsApi.js +1136 -0
- package/dist/api/FunctionsApi.js +111 -0
- package/dist/api/GeocodeApi.js +340 -0
- package/dist/api/GoogleApi.js +88 -0
- package/dist/api/GraphActionsApi.js +674 -0
- package/dist/api/GraphObjectTypesApi.js +527 -0
- package/dist/api/GraphObjectsApi.js +4026 -0
- package/dist/api/GraphRelationshipTypesApi.js +1055 -0
- package/dist/api/GraphRelationshipsApi.js +1921 -0
- package/dist/api/GraphSchemasApi.js +459 -0
- package/dist/api/GraphTraversalApi.js +415 -0
- package/dist/api/GraphsApi.js +716 -0
- package/dist/api/GroupsApi.js +731 -0
- package/dist/api/IAMApi.js +268 -0
- package/dist/api/ImagesApi.js +535 -0
- package/dist/api/InvitesApi.js +339 -0
- package/dist/api/LikesApi.js +785 -0
- package/dist/api/LinkedINApi.js +88 -0
- package/dist/api/LiveMeetingsApi.js +175 -0
- package/dist/api/MeetingEventsApi.js +358 -0
- package/dist/api/PagesApi.js +605 -0
- package/dist/api/PostsApi.js +330 -0
- package/dist/api/PrivateMessagesApi.js +965 -0
- package/dist/api/PublicationsApi.js +103 -0
- package/dist/api/ScreensApi.js +224 -0
- package/dist/api/SocialIntegrationApi.js +214 -0
- package/dist/api/StripeAccountsApi.js +2309 -0
- package/dist/api/TagsApi.js +111 -0
- package/dist/api/TemplatesApi.js +224 -0
- package/dist/api/ThemeMappingsApi.js +219 -0
- package/dist/api/TransactionsApi.js +161 -0
- package/dist/api/TwitterApi.js +88 -0
- package/dist/api/UserTagsApi.js +592 -0
- package/dist/api/UsersApi.js +591 -0
- package/dist/api/UtilsApi.js +80 -0
- package/dist/api/VideosApi.js +709 -0
- package/dist/index.js +1301 -0
- package/dist/model/APIClient.js +354 -0
- package/dist/model/AccountSessionInput.js +222 -0
- package/dist/model/AccountSessionResponse.js +171 -0
- package/dist/model/ApplicationPaymentAccountResponse.js +185 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureException.js +265 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCause.js +234 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseStackTraceInner.js +303 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseSuppressedInner.js +187 -0
- package/dist/model/Article.js +668 -0
- package/dist/model/Authorization.js +166 -0
- package/dist/model/Balance.js +267 -0
- package/dist/model/BalanceDetails.js +164 -0
- package/dist/model/BalanceResponse.js +139 -0
- package/dist/model/BankAccountInfo.js +232 -0
- package/dist/model/CardInfo.js +213 -0
- package/dist/model/Comment.js +495 -0
- package/dist/model/Coordinates.js +129 -0
- package/dist/model/CreateAccountResponse.js +233 -0
- package/dist/model/CreateStripeAccountInput.js +216 -0
- package/dist/model/CreateStripeCustomerInput.js +195 -0
- package/dist/model/CustomerResponse.js +168 -0
- package/dist/model/DataObject.js +129 -0
- package/dist/model/DataSheetImport.js +732 -0
- package/dist/model/DataSheetImportPrivacySettings.js +154 -0
- package/dist/model/DataSheetImportSummary.js +206 -0
- package/dist/model/Document.js +743 -0
- package/dist/model/DocumentPart.js +612 -0
- package/dist/model/DocumentPartType.js +358 -0
- package/dist/model/DocumentType.js +458 -0
- package/dist/model/FieldMapping.js +185 -0
- package/dist/model/Fields.js +737 -0
- package/dist/model/File.js +341 -0
- package/dist/model/FileAttachmentUploadObject.js +341 -0
- package/dist/model/Filter.js +137 -0
- package/dist/model/FilterManager.js +154 -0
- package/dist/model/Form.js +393 -0
- package/dist/model/FormSection.js +304 -0
- package/dist/model/FormSubmission.js +238 -0
- package/dist/model/Geocode.js +191 -0
- package/dist/model/GeocodePayload.js +141 -0
- package/dist/model/GeolocationInput.js +216 -0
- package/dist/model/Graph.js +499 -0
- package/dist/model/GraphAction.js +298 -0
- package/dist/model/GraphDatabaseService.js +254 -0
- package/dist/model/GraphGeocode.js +282 -0
- package/dist/model/GraphIteratorEntryPart.js +129 -0
- package/dist/model/GraphObject.js +454 -0
- package/dist/model/GraphObjectPayload.js +430 -0
- package/dist/model/GraphObjectSchema.js +545 -0
- package/dist/model/GraphObjectType.js +626 -0
- package/dist/model/GraphObjectTypeSchema.js +645 -0
- package/dist/model/GraphOwner.js +158 -0
- package/dist/model/GraphRelationObjectObject.js +273 -0
- package/dist/model/GraphRelationship.js +301 -0
- package/dist/model/GraphRelationshipPayload.js +214 -0
- package/dist/model/GraphRelationshipType.js +675 -0
- package/dist/model/GraphSchema.js +645 -0
- package/dist/model/GraphTraversalInput.js +1125 -0
- package/dist/model/Image.js +449 -0
- package/dist/model/ImageUploadObject.js +449 -0
- package/dist/model/InputPart.js +191 -0
- package/dist/model/InputPartMediaType.js +214 -0
- package/dist/model/Link.js +305 -0
- package/dist/model/LiveStreamInfo.js +167 -0
- package/dist/model/MeetingEvent.js +591 -0
- package/dist/model/MeetingEventTimezone.js +187 -0
- package/dist/model/MeetingInfo.js +220 -0
- package/dist/model/Member.js +525 -0
- package/dist/model/MemberGroupCategory.js +237 -0
- package/dist/model/MemberList.js +96 -0
- package/dist/model/MessageGroup.js +160 -0
- package/dist/model/MultipartBody.js +133 -0
- package/dist/model/Objecttype.js +615 -0
- package/dist/model/Page.js +370 -0
- package/dist/model/PageSchema.js +482 -0
- package/dist/model/Pageable.js +235 -0
- package/dist/model/Path.js +110 -0
- package/dist/model/PaymentAccountObject.js +209 -0
- package/dist/model/PaymentIntentInput.js +214 -0
- package/dist/model/PaymentIntentResponse.js +137 -0
- package/dist/model/PaymentMethod.js +319 -0
- package/dist/model/PaymentMethodInput.js +291 -0
- package/dist/model/PaymentMethodResponse.js +139 -0
- package/dist/model/PaymentMethodsResponse.js +158 -0
- package/dist/model/Payout.js +313 -0
- package/dist/model/PayoutInput.js +347 -0
- package/dist/model/PayoutResponse.js +142 -0
- package/dist/model/Post.js +368 -0
- package/dist/model/PrivateMessage.js +494 -0
- package/dist/model/PrivateMessageConversation.js +520 -0
- package/dist/model/PrivateMessageConversationSchema.js +268 -0
- package/dist/model/Profile.js +191 -0
- package/dist/model/Profiletype.js +210 -0
- package/dist/model/PropertyContainer.js +162 -0
- package/dist/model/PurgeDataDefaultResponseValue.js +151 -0
- package/dist/model/RelationshipMapping.js +264 -0
- package/dist/model/ScreenSchema.js +834 -0
- package/dist/model/SimulcastInfo.js +175 -0
- package/dist/model/SkinField.js +737 -0
- package/dist/model/SocialGroup.js +602 -0
- package/dist/model/SocialGroupType.js +327 -0
- package/dist/model/Sort.js +154 -0
- package/dist/model/SourceTypes.js +154 -0
- package/dist/model/StatusUpdate.js +312 -0
- package/dist/model/StreetAddress.js +224 -0
- package/dist/model/StripeAccount.js +272 -0
- package/dist/model/StripeCustomerAccount.js +212 -0
- package/dist/model/Template.js +272 -0
- package/dist/model/TemplateSchema.js +300 -0
- package/dist/model/ThemeMapping.js +245 -0
- package/dist/model/ThemeMappingPayload.js +239 -0
- package/dist/model/Transaction.js +137 -0
- package/dist/model/Transfer.js +286 -0
- package/dist/model/TransferInput.js +288 -0
- package/dist/model/TransferResponse.js +173 -0
- package/dist/model/TransferResponsePaymentMethodDetails.js +286 -0
- package/dist/model/TraversalRelationResponse.js +176 -0
- package/dist/model/User.js +525 -0
- package/dist/model/UserDataPayload.js +525 -0
- package/dist/model/UserDomain.js +191 -0
- package/dist/model/UserInvite.js +404 -0
- package/dist/model/UserInviteInput.js +245 -0
- package/dist/model/UserSchema.js +525 -0
- package/dist/model/UserTag.js +246 -0
- package/dist/model/Userid.js +133 -0
- package/dist/model/Video.js +632 -0
- package/dist/model/VideoLiveUrl.js +137 -0
- package/dist/model/VideoSchema.js +717 -0
- package/dist/model/VideoUploadObject.js +632 -0
- package/dist/model/ZeusPortalCategory.js +434 -0
- package/package.json +46 -0
|
@@ -0,0 +1,717 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _VideoLiveUrl = _interopRequireDefault(require("./VideoLiveUrl"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
13
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* gobodo-api
|
|
17
|
+
* REST Interface for Gobodo API
|
|
18
|
+
*
|
|
19
|
+
* The version of the OpenAPI document: 0.1.34
|
|
20
|
+
* Contact: info@gobodo.io
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* The VideoSchema model module.
|
|
29
|
+
* @module model/VideoSchema
|
|
30
|
+
* @version 0.1.34
|
|
31
|
+
*/
|
|
32
|
+
var VideoSchema = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new <code>VideoSchema</code>.
|
|
35
|
+
* @alias module:model/VideoSchema
|
|
36
|
+
*/
|
|
37
|
+
function VideoSchema() {
|
|
38
|
+
_classCallCheck(this, VideoSchema);
|
|
39
|
+
VideoSchema.initialize(this);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Initializes the fields of this object.
|
|
44
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
45
|
+
* Only for internal use.
|
|
46
|
+
*/
|
|
47
|
+
_createClass(VideoSchema, [{
|
|
48
|
+
key: "getCreatorpageid",
|
|
49
|
+
value:
|
|
50
|
+
/**
|
|
51
|
+
* @return {Number}
|
|
52
|
+
*/
|
|
53
|
+
function getCreatorpageid() {
|
|
54
|
+
return this.creatorpageid;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @param {Number} creatorpageid
|
|
59
|
+
*/
|
|
60
|
+
}, {
|
|
61
|
+
key: "setCreatorpageid",
|
|
62
|
+
value: function setCreatorpageid(creatorpageid) {
|
|
63
|
+
this['creatorpageid'] = creatorpageid;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @return {String}
|
|
67
|
+
*/
|
|
68
|
+
}, {
|
|
69
|
+
key: "getDataurl",
|
|
70
|
+
value: function getDataurl() {
|
|
71
|
+
return this.dataurl;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @param {String} dataurl
|
|
76
|
+
*/
|
|
77
|
+
}, {
|
|
78
|
+
key: "setDataurl",
|
|
79
|
+
value: function setDataurl(dataurl) {
|
|
80
|
+
this['dataurl'] = dataurl;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @return {module:model/VideoLiveUrl}
|
|
84
|
+
*/
|
|
85
|
+
}, {
|
|
86
|
+
key: "getLiveUrl",
|
|
87
|
+
value: function getLiveUrl() {
|
|
88
|
+
return this.liveUrl;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @param {module:model/VideoLiveUrl} liveUrl
|
|
93
|
+
*/
|
|
94
|
+
}, {
|
|
95
|
+
key: "setLiveUrl",
|
|
96
|
+
value: function setLiveUrl(liveUrl) {
|
|
97
|
+
this['liveUrl'] = liveUrl;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @return {String}
|
|
101
|
+
*/
|
|
102
|
+
}, {
|
|
103
|
+
key: "getName",
|
|
104
|
+
value: function getName() {
|
|
105
|
+
return this.name;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @param {String} name
|
|
110
|
+
*/
|
|
111
|
+
}, {
|
|
112
|
+
key: "setName",
|
|
113
|
+
value: function setName(name) {
|
|
114
|
+
this['name'] = name;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* @return {Number}
|
|
118
|
+
*/
|
|
119
|
+
}, {
|
|
120
|
+
key: "getSize",
|
|
121
|
+
value: function getSize() {
|
|
122
|
+
return this.size;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @param {Number} size
|
|
127
|
+
*/
|
|
128
|
+
}, {
|
|
129
|
+
key: "setSize",
|
|
130
|
+
value: function setSize(size) {
|
|
131
|
+
this['size'] = size;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @return {Object}
|
|
135
|
+
*/
|
|
136
|
+
}, {
|
|
137
|
+
key: "getContent",
|
|
138
|
+
value: function getContent() {
|
|
139
|
+
return this.content;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* @param {Object} content
|
|
144
|
+
*/
|
|
145
|
+
}, {
|
|
146
|
+
key: "setContent",
|
|
147
|
+
value: function setContent(content) {
|
|
148
|
+
this['content'] = content;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* @return {String}
|
|
152
|
+
*/
|
|
153
|
+
}, {
|
|
154
|
+
key: "getFileName",
|
|
155
|
+
value: function getFileName() {
|
|
156
|
+
return this.fileName;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @param {String} fileName
|
|
161
|
+
*/
|
|
162
|
+
}, {
|
|
163
|
+
key: "setFileName",
|
|
164
|
+
value: function setFileName(fileName) {
|
|
165
|
+
this['fileName'] = fileName;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* @return {String}
|
|
169
|
+
*/
|
|
170
|
+
}, {
|
|
171
|
+
key: "getContenttype",
|
|
172
|
+
value: function getContenttype() {
|
|
173
|
+
return this.contenttype;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* @param {String} contenttype
|
|
178
|
+
*/
|
|
179
|
+
}, {
|
|
180
|
+
key: "setContenttype",
|
|
181
|
+
value: function setContenttype(contenttype) {
|
|
182
|
+
this['contenttype'] = contenttype;
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* @return {String}
|
|
186
|
+
*/
|
|
187
|
+
}, {
|
|
188
|
+
key: "getDescription",
|
|
189
|
+
value: function getDescription() {
|
|
190
|
+
return this.description;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @param {String} description
|
|
195
|
+
*/
|
|
196
|
+
}, {
|
|
197
|
+
key: "setDescription",
|
|
198
|
+
value: function setDescription(description) {
|
|
199
|
+
this['description'] = description;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* @return {String}
|
|
203
|
+
*/
|
|
204
|
+
}, {
|
|
205
|
+
key: "getUrl",
|
|
206
|
+
value: function getUrl() {
|
|
207
|
+
return this.url;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* @param {String} url
|
|
212
|
+
*/
|
|
213
|
+
}, {
|
|
214
|
+
key: "setUrl",
|
|
215
|
+
value: function setUrl(url) {
|
|
216
|
+
this['url'] = url;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* @return {String}
|
|
220
|
+
*/
|
|
221
|
+
}, {
|
|
222
|
+
key: "getMainphoto",
|
|
223
|
+
value: function getMainphoto() {
|
|
224
|
+
return this.mainphoto;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* @param {String} mainphoto
|
|
229
|
+
*/
|
|
230
|
+
}, {
|
|
231
|
+
key: "setMainphoto",
|
|
232
|
+
value: function setMainphoto(mainphoto) {
|
|
233
|
+
this['mainphoto'] = mainphoto;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* @return {Number}
|
|
237
|
+
*/
|
|
238
|
+
}, {
|
|
239
|
+
key: "getCreator",
|
|
240
|
+
value: function getCreator() {
|
|
241
|
+
return this.creator;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* @param {Number} creator
|
|
246
|
+
*/
|
|
247
|
+
}, {
|
|
248
|
+
key: "setCreator",
|
|
249
|
+
value: function setCreator(creator) {
|
|
250
|
+
this['creator'] = creator;
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* @return {Date}
|
|
254
|
+
*/
|
|
255
|
+
}, {
|
|
256
|
+
key: "getCreationdate",
|
|
257
|
+
value: function getCreationdate() {
|
|
258
|
+
return this.creationdate;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @param {Date} creationdate
|
|
263
|
+
*/
|
|
264
|
+
}, {
|
|
265
|
+
key: "setCreationdate",
|
|
266
|
+
value: function setCreationdate(creationdate) {
|
|
267
|
+
this['creationdate'] = creationdate;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @return {Date}
|
|
271
|
+
*/
|
|
272
|
+
}, {
|
|
273
|
+
key: "getModificationdate",
|
|
274
|
+
value: function getModificationdate() {
|
|
275
|
+
return this.modificationdate;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* @param {Date} modificationdate
|
|
280
|
+
*/
|
|
281
|
+
}, {
|
|
282
|
+
key: "setModificationdate",
|
|
283
|
+
value: function setModificationdate(modificationdate) {
|
|
284
|
+
this['modificationdate'] = modificationdate;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* @return {Number}
|
|
288
|
+
*/
|
|
289
|
+
}, {
|
|
290
|
+
key: "getLiveDuration",
|
|
291
|
+
value: function getLiveDuration() {
|
|
292
|
+
return this.liveDuration;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @param {Number} liveDuration
|
|
297
|
+
*/
|
|
298
|
+
}, {
|
|
299
|
+
key: "setLiveDuration",
|
|
300
|
+
value: function setLiveDuration(liveDuration) {
|
|
301
|
+
this['liveDuration'] = liveDuration;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* @return {Number}
|
|
305
|
+
*/
|
|
306
|
+
}, {
|
|
307
|
+
key: "getVideoProcessingStatus",
|
|
308
|
+
value: function getVideoProcessingStatus() {
|
|
309
|
+
return this.videoProcessingStatus;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* @param {Number} videoProcessingStatus
|
|
314
|
+
*/
|
|
315
|
+
}, {
|
|
316
|
+
key: "setVideoProcessingStatus",
|
|
317
|
+
value: function setVideoProcessingStatus(videoProcessingStatus) {
|
|
318
|
+
this['videoProcessingStatus'] = videoProcessingStatus;
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* @return {Number}
|
|
322
|
+
*/
|
|
323
|
+
}, {
|
|
324
|
+
key: "getVideoType",
|
|
325
|
+
value: function getVideoType() {
|
|
326
|
+
return this.videoType;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* @param {Number} videoType
|
|
331
|
+
*/
|
|
332
|
+
}, {
|
|
333
|
+
key: "setVideoType",
|
|
334
|
+
value: function setVideoType(videoType) {
|
|
335
|
+
this['videoType'] = videoType;
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* @return {Date}
|
|
339
|
+
*/
|
|
340
|
+
}, {
|
|
341
|
+
key: "getProcessingStartTime",
|
|
342
|
+
value: function getProcessingStartTime() {
|
|
343
|
+
return this.processingStartTime;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* @param {Date} processingStartTime
|
|
348
|
+
*/
|
|
349
|
+
}, {
|
|
350
|
+
key: "setProcessingStartTime",
|
|
351
|
+
value: function setProcessingStartTime(processingStartTime) {
|
|
352
|
+
this['processingStartTime'] = processingStartTime;
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* @return {Object}
|
|
356
|
+
*/
|
|
357
|
+
}, {
|
|
358
|
+
key: "getThumbnailImages",
|
|
359
|
+
value: function getThumbnailImages() {
|
|
360
|
+
return this.thumbnailImages;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* @param {Object} thumbnailImages
|
|
365
|
+
*/
|
|
366
|
+
}, {
|
|
367
|
+
key: "setThumbnailImages",
|
|
368
|
+
value: function setThumbnailImages(thumbnailImages) {
|
|
369
|
+
this['thumbnailImages'] = thumbnailImages;
|
|
370
|
+
}
|
|
371
|
+
/**
|
|
372
|
+
* @return {String}
|
|
373
|
+
*/
|
|
374
|
+
}, {
|
|
375
|
+
key: "getHostKey",
|
|
376
|
+
value: function getHostKey() {
|
|
377
|
+
return this.hostKey;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* @param {String} hostKey
|
|
382
|
+
*/
|
|
383
|
+
}, {
|
|
384
|
+
key: "setHostKey",
|
|
385
|
+
value: function setHostKey(hostKey) {
|
|
386
|
+
this['hostKey'] = hostKey;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* @return {Number}
|
|
390
|
+
*/
|
|
391
|
+
}, {
|
|
392
|
+
key: "getContainerObjectType",
|
|
393
|
+
value: function getContainerObjectType() {
|
|
394
|
+
return this.containerObjectType;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* @param {Number} containerObjectType
|
|
399
|
+
*/
|
|
400
|
+
}, {
|
|
401
|
+
key: "setContainerObjectType",
|
|
402
|
+
value: function setContainerObjectType(containerObjectType) {
|
|
403
|
+
this['containerObjectType'] = containerObjectType;
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* @return {Number}
|
|
407
|
+
*/
|
|
408
|
+
}, {
|
|
409
|
+
key: "getContainerObjectID",
|
|
410
|
+
value: function getContainerObjectID() {
|
|
411
|
+
return this.containerObjectID;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* @param {Number} containerObjectID
|
|
416
|
+
*/
|
|
417
|
+
}, {
|
|
418
|
+
key: "setContainerObjectID",
|
|
419
|
+
value: function setContainerObjectID(containerObjectID) {
|
|
420
|
+
this['containerObjectID'] = containerObjectID;
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* @return {Object}
|
|
424
|
+
*/
|
|
425
|
+
}, {
|
|
426
|
+
key: "getData",
|
|
427
|
+
value: function getData() {
|
|
428
|
+
return this.data;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @param {Object} data
|
|
433
|
+
*/
|
|
434
|
+
}, {
|
|
435
|
+
key: "setData",
|
|
436
|
+
value: function setData(data) {
|
|
437
|
+
this['data'] = data;
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* @return {Number}
|
|
441
|
+
*/
|
|
442
|
+
}, {
|
|
443
|
+
key: "getId",
|
|
444
|
+
value: function getId() {
|
|
445
|
+
return this.id;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* @param {Number} id
|
|
450
|
+
*/
|
|
451
|
+
}, {
|
|
452
|
+
key: "setId",
|
|
453
|
+
value: function setId(id) {
|
|
454
|
+
this['id'] = id;
|
|
455
|
+
}
|
|
456
|
+
}], [{
|
|
457
|
+
key: "initialize",
|
|
458
|
+
value: function initialize(obj) {}
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* Constructs a <code>VideoSchema</code> from a plain JavaScript object, optionally creating a new instance.
|
|
462
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
463
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
464
|
+
* @param {module:model/VideoSchema} obj Optional instance to populate.
|
|
465
|
+
* @return {module:model/VideoSchema} The populated <code>VideoSchema</code> instance.
|
|
466
|
+
*/
|
|
467
|
+
}, {
|
|
468
|
+
key: "constructFromObject",
|
|
469
|
+
value: function constructFromObject(data, obj) {
|
|
470
|
+
if (data) {
|
|
471
|
+
obj = obj || new VideoSchema();
|
|
472
|
+
if (data.hasOwnProperty('creatorpageid')) {
|
|
473
|
+
obj['creatorpageid'] = _ApiClient["default"].convertToType(data['creatorpageid'], 'Number');
|
|
474
|
+
}
|
|
475
|
+
if (data.hasOwnProperty('dataurl')) {
|
|
476
|
+
obj['dataurl'] = _ApiClient["default"].convertToType(data['dataurl'], 'String');
|
|
477
|
+
}
|
|
478
|
+
if (data.hasOwnProperty('liveUrl')) {
|
|
479
|
+
obj['liveUrl'] = _VideoLiveUrl["default"].constructFromObject(data['liveUrl']);
|
|
480
|
+
}
|
|
481
|
+
if (data.hasOwnProperty('name')) {
|
|
482
|
+
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
483
|
+
}
|
|
484
|
+
if (data.hasOwnProperty('size')) {
|
|
485
|
+
obj['size'] = _ApiClient["default"].convertToType(data['size'], 'Number');
|
|
486
|
+
}
|
|
487
|
+
if (data.hasOwnProperty('content')) {
|
|
488
|
+
obj['content'] = _ApiClient["default"].convertToType(data['content'], Object);
|
|
489
|
+
}
|
|
490
|
+
if (data.hasOwnProperty('fileName')) {
|
|
491
|
+
obj['fileName'] = _ApiClient["default"].convertToType(data['fileName'], 'String');
|
|
492
|
+
}
|
|
493
|
+
if (data.hasOwnProperty('contenttype')) {
|
|
494
|
+
obj['contenttype'] = _ApiClient["default"].convertToType(data['contenttype'], 'String');
|
|
495
|
+
}
|
|
496
|
+
if (data.hasOwnProperty('description')) {
|
|
497
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
498
|
+
}
|
|
499
|
+
if (data.hasOwnProperty('url')) {
|
|
500
|
+
obj['url'] = _ApiClient["default"].convertToType(data['url'], 'String');
|
|
501
|
+
}
|
|
502
|
+
if (data.hasOwnProperty('mainphoto')) {
|
|
503
|
+
obj['mainphoto'] = _ApiClient["default"].convertToType(data['mainphoto'], 'String');
|
|
504
|
+
}
|
|
505
|
+
if (data.hasOwnProperty('creator')) {
|
|
506
|
+
obj['creator'] = _ApiClient["default"].convertToType(data['creator'], 'Number');
|
|
507
|
+
}
|
|
508
|
+
if (data.hasOwnProperty('creationdate')) {
|
|
509
|
+
obj['creationdate'] = _ApiClient["default"].convertToType(data['creationdate'], 'Date');
|
|
510
|
+
}
|
|
511
|
+
if (data.hasOwnProperty('modificationdate')) {
|
|
512
|
+
obj['modificationdate'] = _ApiClient["default"].convertToType(data['modificationdate'], 'Date');
|
|
513
|
+
}
|
|
514
|
+
if (data.hasOwnProperty('liveDuration')) {
|
|
515
|
+
obj['liveDuration'] = _ApiClient["default"].convertToType(data['liveDuration'], 'Number');
|
|
516
|
+
}
|
|
517
|
+
if (data.hasOwnProperty('videoProcessingStatus')) {
|
|
518
|
+
obj['videoProcessingStatus'] = _ApiClient["default"].convertToType(data['videoProcessingStatus'], 'Number');
|
|
519
|
+
}
|
|
520
|
+
if (data.hasOwnProperty('videoType')) {
|
|
521
|
+
obj['videoType'] = _ApiClient["default"].convertToType(data['videoType'], 'Number');
|
|
522
|
+
}
|
|
523
|
+
if (data.hasOwnProperty('processingStartTime')) {
|
|
524
|
+
obj['processingStartTime'] = _ApiClient["default"].convertToType(data['processingStartTime'], 'Date');
|
|
525
|
+
}
|
|
526
|
+
if (data.hasOwnProperty('thumbnailImages')) {
|
|
527
|
+
obj['thumbnailImages'] = _ApiClient["default"].convertToType(data['thumbnailImages'], Object);
|
|
528
|
+
}
|
|
529
|
+
if (data.hasOwnProperty('hostKey')) {
|
|
530
|
+
obj['hostKey'] = _ApiClient["default"].convertToType(data['hostKey'], 'String');
|
|
531
|
+
}
|
|
532
|
+
if (data.hasOwnProperty('containerObjectType')) {
|
|
533
|
+
obj['containerObjectType'] = _ApiClient["default"].convertToType(data['containerObjectType'], 'Number');
|
|
534
|
+
}
|
|
535
|
+
if (data.hasOwnProperty('containerObjectID')) {
|
|
536
|
+
obj['containerObjectID'] = _ApiClient["default"].convertToType(data['containerObjectID'], 'Number');
|
|
537
|
+
}
|
|
538
|
+
if (data.hasOwnProperty('data')) {
|
|
539
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
540
|
+
}
|
|
541
|
+
if (data.hasOwnProperty('id')) {
|
|
542
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
return obj;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Validates the JSON data with respect to <code>VideoSchema</code>.
|
|
550
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
551
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>VideoSchema</code>.
|
|
552
|
+
*/
|
|
553
|
+
}, {
|
|
554
|
+
key: "validateJSON",
|
|
555
|
+
value: function validateJSON(data) {
|
|
556
|
+
// ensure the json data is a string
|
|
557
|
+
if (data['dataurl'] && !(typeof data['dataurl'] === 'string' || data['dataurl'] instanceof String)) {
|
|
558
|
+
throw new Error("Expected the field `dataurl` to be a primitive type in the JSON string but got " + data['dataurl']);
|
|
559
|
+
}
|
|
560
|
+
// validate the optional field `liveUrl`
|
|
561
|
+
if (data['liveUrl']) {
|
|
562
|
+
// data not null
|
|
563
|
+
_VideoLiveUrl["default"].validateJSON(data['liveUrl']);
|
|
564
|
+
}
|
|
565
|
+
// ensure the json data is a string
|
|
566
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
567
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
568
|
+
}
|
|
569
|
+
// ensure the json data is a string
|
|
570
|
+
if (data['fileName'] && !(typeof data['fileName'] === 'string' || data['fileName'] instanceof String)) {
|
|
571
|
+
throw new Error("Expected the field `fileName` to be a primitive type in the JSON string but got " + data['fileName']);
|
|
572
|
+
}
|
|
573
|
+
// ensure the json data is a string
|
|
574
|
+
if (data['contenttype'] && !(typeof data['contenttype'] === 'string' || data['contenttype'] instanceof String)) {
|
|
575
|
+
throw new Error("Expected the field `contenttype` to be a primitive type in the JSON string but got " + data['contenttype']);
|
|
576
|
+
}
|
|
577
|
+
// ensure the json data is a string
|
|
578
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
579
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
580
|
+
}
|
|
581
|
+
// ensure the json data is a string
|
|
582
|
+
if (data['url'] && !(typeof data['url'] === 'string' || data['url'] instanceof String)) {
|
|
583
|
+
throw new Error("Expected the field `url` to be a primitive type in the JSON string but got " + data['url']);
|
|
584
|
+
}
|
|
585
|
+
// ensure the json data is a string
|
|
586
|
+
if (data['mainphoto'] && !(typeof data['mainphoto'] === 'string' || data['mainphoto'] instanceof String)) {
|
|
587
|
+
throw new Error("Expected the field `mainphoto` to be a primitive type in the JSON string but got " + data['mainphoto']);
|
|
588
|
+
}
|
|
589
|
+
// ensure the json data is a string
|
|
590
|
+
if (data['hostKey'] && !(typeof data['hostKey'] === 'string' || data['hostKey'] instanceof String)) {
|
|
591
|
+
throw new Error("Expected the field `hostKey` to be a primitive type in the JSON string but got " + data['hostKey']);
|
|
592
|
+
}
|
|
593
|
+
return true;
|
|
594
|
+
}
|
|
595
|
+
}]);
|
|
596
|
+
return VideoSchema;
|
|
597
|
+
}();
|
|
598
|
+
/**
|
|
599
|
+
* @member {Number} creatorpageid
|
|
600
|
+
*/
|
|
601
|
+
VideoSchema.prototype['creatorpageid'] = undefined;
|
|
602
|
+
|
|
603
|
+
/**
|
|
604
|
+
* @member {String} dataurl
|
|
605
|
+
*/
|
|
606
|
+
VideoSchema.prototype['dataurl'] = undefined;
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* @member {module:model/VideoLiveUrl} liveUrl
|
|
610
|
+
*/
|
|
611
|
+
VideoSchema.prototype['liveUrl'] = undefined;
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* @member {String} name
|
|
615
|
+
*/
|
|
616
|
+
VideoSchema.prototype['name'] = undefined;
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
* @member {Number} size
|
|
620
|
+
*/
|
|
621
|
+
VideoSchema.prototype['size'] = undefined;
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* @member {Object} content
|
|
625
|
+
*/
|
|
626
|
+
VideoSchema.prototype['content'] = undefined;
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* @member {String} fileName
|
|
630
|
+
*/
|
|
631
|
+
VideoSchema.prototype['fileName'] = undefined;
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* @member {String} contenttype
|
|
635
|
+
*/
|
|
636
|
+
VideoSchema.prototype['contenttype'] = undefined;
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* @member {String} description
|
|
640
|
+
*/
|
|
641
|
+
VideoSchema.prototype['description'] = undefined;
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* @member {String} url
|
|
645
|
+
*/
|
|
646
|
+
VideoSchema.prototype['url'] = undefined;
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* @member {String} mainphoto
|
|
650
|
+
*/
|
|
651
|
+
VideoSchema.prototype['mainphoto'] = undefined;
|
|
652
|
+
|
|
653
|
+
/**
|
|
654
|
+
* @member {Number} creator
|
|
655
|
+
*/
|
|
656
|
+
VideoSchema.prototype['creator'] = undefined;
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* @member {Date} creationdate
|
|
660
|
+
*/
|
|
661
|
+
VideoSchema.prototype['creationdate'] = undefined;
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* @member {Date} modificationdate
|
|
665
|
+
*/
|
|
666
|
+
VideoSchema.prototype['modificationdate'] = undefined;
|
|
667
|
+
|
|
668
|
+
/**
|
|
669
|
+
* @member {Number} liveDuration
|
|
670
|
+
*/
|
|
671
|
+
VideoSchema.prototype['liveDuration'] = undefined;
|
|
672
|
+
|
|
673
|
+
/**
|
|
674
|
+
* @member {Number} videoProcessingStatus
|
|
675
|
+
*/
|
|
676
|
+
VideoSchema.prototype['videoProcessingStatus'] = undefined;
|
|
677
|
+
|
|
678
|
+
/**
|
|
679
|
+
* @member {Number} videoType
|
|
680
|
+
*/
|
|
681
|
+
VideoSchema.prototype['videoType'] = undefined;
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* @member {Date} processingStartTime
|
|
685
|
+
*/
|
|
686
|
+
VideoSchema.prototype['processingStartTime'] = undefined;
|
|
687
|
+
|
|
688
|
+
/**
|
|
689
|
+
* @member {Object} thumbnailImages
|
|
690
|
+
*/
|
|
691
|
+
VideoSchema.prototype['thumbnailImages'] = undefined;
|
|
692
|
+
|
|
693
|
+
/**
|
|
694
|
+
* @member {String} hostKey
|
|
695
|
+
*/
|
|
696
|
+
VideoSchema.prototype['hostKey'] = undefined;
|
|
697
|
+
|
|
698
|
+
/**
|
|
699
|
+
* @member {Number} containerObjectType
|
|
700
|
+
*/
|
|
701
|
+
VideoSchema.prototype['containerObjectType'] = undefined;
|
|
702
|
+
|
|
703
|
+
/**
|
|
704
|
+
* @member {Number} containerObjectID
|
|
705
|
+
*/
|
|
706
|
+
VideoSchema.prototype['containerObjectID'] = undefined;
|
|
707
|
+
|
|
708
|
+
/**
|
|
709
|
+
* @member {Object} data
|
|
710
|
+
*/
|
|
711
|
+
VideoSchema.prototype['data'] = undefined;
|
|
712
|
+
|
|
713
|
+
/**
|
|
714
|
+
* @member {Number} id
|
|
715
|
+
*/
|
|
716
|
+
VideoSchema.prototype['id'] = undefined;
|
|
717
|
+
var _default = exports["default"] = VideoSchema;
|