@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,268 @@
|
|
|
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
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
9
|
+
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); }
|
|
10
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
|
|
11
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
12
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
13
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
14
|
+
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); } }
|
|
15
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
17
|
+
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); } /**
|
|
18
|
+
* gobodo-api
|
|
19
|
+
* REST Interface for Gobodo API
|
|
20
|
+
*
|
|
21
|
+
* The version of the OpenAPI document: 0.1.34
|
|
22
|
+
* Contact: info@gobodo.io
|
|
23
|
+
*
|
|
24
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
25
|
+
* https://openapi-generator.tech
|
|
26
|
+
* Do not edit the class manually.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* The PrivateMessageConversationSchema model module.
|
|
31
|
+
* @module model/PrivateMessageConversationSchema
|
|
32
|
+
* @version 0.1.34
|
|
33
|
+
*/
|
|
34
|
+
var PrivateMessageConversationSchema = /*#__PURE__*/function () {
|
|
35
|
+
/**
|
|
36
|
+
* Constructs a new <code>PrivateMessageConversationSchema</code>.
|
|
37
|
+
* @alias module:model/PrivateMessageConversationSchema
|
|
38
|
+
* @param subject {String} Subject of this conversation
|
|
39
|
+
* @param body {String} The body of the message that starts this conversation
|
|
40
|
+
* @param participants {Array.<Number>} The participants of this conversation that are user accounts
|
|
41
|
+
* @param participantPages {Array.<Number>} The participants of this conversation that are org pages
|
|
42
|
+
*/
|
|
43
|
+
function PrivateMessageConversationSchema(subject, body, participants, participantPages) {
|
|
44
|
+
_classCallCheck(this, PrivateMessageConversationSchema);
|
|
45
|
+
PrivateMessageConversationSchema.initialize(this, subject, body, participants, participantPages);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Initializes the fields of this object.
|
|
50
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
51
|
+
* Only for internal use.
|
|
52
|
+
*/
|
|
53
|
+
_createClass(PrivateMessageConversationSchema, [{
|
|
54
|
+
key: "getSubject",
|
|
55
|
+
value:
|
|
56
|
+
/**
|
|
57
|
+
* Returns Subject of this conversation
|
|
58
|
+
* @return {String}
|
|
59
|
+
*/
|
|
60
|
+
function getSubject() {
|
|
61
|
+
return this.subject;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Sets Subject of this conversation
|
|
66
|
+
* @param {String} subject Subject of this conversation
|
|
67
|
+
*/
|
|
68
|
+
}, {
|
|
69
|
+
key: "setSubject",
|
|
70
|
+
value: function setSubject(subject) {
|
|
71
|
+
this['subject'] = subject;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Returns The body of the message that starts this conversation
|
|
75
|
+
* @return {String}
|
|
76
|
+
*/
|
|
77
|
+
}, {
|
|
78
|
+
key: "getBody",
|
|
79
|
+
value: function getBody() {
|
|
80
|
+
return this.body;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Sets The body of the message that starts this conversation
|
|
85
|
+
* @param {String} body The body of the message that starts this conversation
|
|
86
|
+
*/
|
|
87
|
+
}, {
|
|
88
|
+
key: "setBody",
|
|
89
|
+
value: function setBody(body) {
|
|
90
|
+
this['body'] = body;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Returns The status of this conversation
|
|
94
|
+
* @return {String}
|
|
95
|
+
*/
|
|
96
|
+
}, {
|
|
97
|
+
key: "getStatus",
|
|
98
|
+
value: function getStatus() {
|
|
99
|
+
return this.status;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Sets The status of this conversation
|
|
104
|
+
* @param {String} status The status of this conversation
|
|
105
|
+
*/
|
|
106
|
+
}, {
|
|
107
|
+
key: "setStatus",
|
|
108
|
+
value: function setStatus(status) {
|
|
109
|
+
this['status'] = status;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Returns The participants of this conversation that are user accounts
|
|
113
|
+
* @return {Array.<Number>}
|
|
114
|
+
*/
|
|
115
|
+
}, {
|
|
116
|
+
key: "getParticipants",
|
|
117
|
+
value: function getParticipants() {
|
|
118
|
+
return this.participants;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Sets The participants of this conversation that are user accounts
|
|
123
|
+
* @param {Array.<Number>} participants The participants of this conversation that are user accounts
|
|
124
|
+
*/
|
|
125
|
+
}, {
|
|
126
|
+
key: "setParticipants",
|
|
127
|
+
value: function setParticipants(participants) {
|
|
128
|
+
this['participants'] = participants;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Returns The participants of this conversation that are org pages
|
|
132
|
+
* @return {Array.<Number>}
|
|
133
|
+
*/
|
|
134
|
+
}, {
|
|
135
|
+
key: "getParticipantPages",
|
|
136
|
+
value: function getParticipantPages() {
|
|
137
|
+
return this.participantPages;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Sets The participants of this conversation that are org pages
|
|
142
|
+
* @param {Array.<Number>} participantPages The participants of this conversation that are org pages
|
|
143
|
+
*/
|
|
144
|
+
}, {
|
|
145
|
+
key: "setParticipantPages",
|
|
146
|
+
value: function setParticipantPages(participantPages) {
|
|
147
|
+
this['participantPages'] = participantPages;
|
|
148
|
+
}
|
|
149
|
+
}], [{
|
|
150
|
+
key: "initialize",
|
|
151
|
+
value: function initialize(obj, subject, body, participants, participantPages) {
|
|
152
|
+
obj['subject'] = subject;
|
|
153
|
+
obj['body'] = body;
|
|
154
|
+
obj['participants'] = participants;
|
|
155
|
+
obj['participantPages'] = participantPages;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* Constructs a <code>PrivateMessageConversationSchema</code> from a plain JavaScript object, optionally creating a new instance.
|
|
160
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
161
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
162
|
+
* @param {module:model/PrivateMessageConversationSchema} obj Optional instance to populate.
|
|
163
|
+
* @return {module:model/PrivateMessageConversationSchema} The populated <code>PrivateMessageConversationSchema</code> instance.
|
|
164
|
+
*/
|
|
165
|
+
}, {
|
|
166
|
+
key: "constructFromObject",
|
|
167
|
+
value: function constructFromObject(data, obj) {
|
|
168
|
+
if (data) {
|
|
169
|
+
obj = obj || new PrivateMessageConversationSchema();
|
|
170
|
+
if (data.hasOwnProperty('subject')) {
|
|
171
|
+
obj['subject'] = _ApiClient["default"].convertToType(data['subject'], 'String');
|
|
172
|
+
}
|
|
173
|
+
if (data.hasOwnProperty('body')) {
|
|
174
|
+
obj['body'] = _ApiClient["default"].convertToType(data['body'], 'String');
|
|
175
|
+
}
|
|
176
|
+
if (data.hasOwnProperty('status')) {
|
|
177
|
+
obj['status'] = _ApiClient["default"].convertToType(data['status'], 'String');
|
|
178
|
+
}
|
|
179
|
+
if (data.hasOwnProperty('participants')) {
|
|
180
|
+
obj['participants'] = _ApiClient["default"].convertToType(data['participants'], ['Number']);
|
|
181
|
+
}
|
|
182
|
+
if (data.hasOwnProperty('participantPages')) {
|
|
183
|
+
obj['participantPages'] = _ApiClient["default"].convertToType(data['participantPages'], ['Number']);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
return obj;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Validates the JSON data with respect to <code>PrivateMessageConversationSchema</code>.
|
|
191
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
192
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>PrivateMessageConversationSchema</code>.
|
|
193
|
+
*/
|
|
194
|
+
}, {
|
|
195
|
+
key: "validateJSON",
|
|
196
|
+
value: function validateJSON(data) {
|
|
197
|
+
// check to make sure all required properties are present in the JSON string
|
|
198
|
+
var _iterator = _createForOfIteratorHelper(PrivateMessageConversationSchema.RequiredProperties),
|
|
199
|
+
_step;
|
|
200
|
+
try {
|
|
201
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
202
|
+
var property = _step.value;
|
|
203
|
+
if (!data[property]) {
|
|
204
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
// ensure the json data is a string
|
|
208
|
+
} catch (err) {
|
|
209
|
+
_iterator.e(err);
|
|
210
|
+
} finally {
|
|
211
|
+
_iterator.f();
|
|
212
|
+
}
|
|
213
|
+
if (data['subject'] && !(typeof data['subject'] === 'string' || data['subject'] instanceof String)) {
|
|
214
|
+
throw new Error("Expected the field `subject` to be a primitive type in the JSON string but got " + data['subject']);
|
|
215
|
+
}
|
|
216
|
+
// ensure the json data is a string
|
|
217
|
+
if (data['body'] && !(typeof data['body'] === 'string' || data['body'] instanceof String)) {
|
|
218
|
+
throw new Error("Expected the field `body` to be a primitive type in the JSON string but got " + data['body']);
|
|
219
|
+
}
|
|
220
|
+
// ensure the json data is a string
|
|
221
|
+
if (data['status'] && !(typeof data['status'] === 'string' || data['status'] instanceof String)) {
|
|
222
|
+
throw new Error("Expected the field `status` to be a primitive type in the JSON string but got " + data['status']);
|
|
223
|
+
}
|
|
224
|
+
// ensure the json data is an array
|
|
225
|
+
if (!Array.isArray(data['participants'])) {
|
|
226
|
+
throw new Error("Expected the field `participants` to be an array in the JSON data but got " + data['participants']);
|
|
227
|
+
}
|
|
228
|
+
// ensure the json data is an array
|
|
229
|
+
if (!Array.isArray(data['participantPages'])) {
|
|
230
|
+
throw new Error("Expected the field `participantPages` to be an array in the JSON data but got " + data['participantPages']);
|
|
231
|
+
}
|
|
232
|
+
return true;
|
|
233
|
+
}
|
|
234
|
+
}]);
|
|
235
|
+
return PrivateMessageConversationSchema;
|
|
236
|
+
}();
|
|
237
|
+
PrivateMessageConversationSchema.RequiredProperties = ["subject", "body", "participants", "participantPages"];
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* Subject of this conversation
|
|
241
|
+
* @member {String} subject
|
|
242
|
+
*/
|
|
243
|
+
PrivateMessageConversationSchema.prototype['subject'] = undefined;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* The body of the message that starts this conversation
|
|
247
|
+
* @member {String} body
|
|
248
|
+
*/
|
|
249
|
+
PrivateMessageConversationSchema.prototype['body'] = undefined;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* The status of this conversation
|
|
253
|
+
* @member {String} status
|
|
254
|
+
*/
|
|
255
|
+
PrivateMessageConversationSchema.prototype['status'] = undefined;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* The participants of this conversation that are user accounts
|
|
259
|
+
* @member {Array.<Number>} participants
|
|
260
|
+
*/
|
|
261
|
+
PrivateMessageConversationSchema.prototype['participants'] = undefined;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* The participants of this conversation that are org pages
|
|
265
|
+
* @member {Array.<Number>} participantPages
|
|
266
|
+
*/
|
|
267
|
+
PrivateMessageConversationSchema.prototype['participantPages'] = undefined;
|
|
268
|
+
var _default = exports["default"] = PrivateMessageConversationSchema;
|
|
@@ -0,0 +1,191 @@
|
|
|
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 _Profiletype = _interopRequireDefault(require("./Profiletype"));
|
|
9
|
+
var _User = _interopRequireDefault(require("./User"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
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); }
|
|
12
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
+
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); } }
|
|
14
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16
|
+
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); } /**
|
|
17
|
+
* gobodo-api
|
|
18
|
+
* REST Interface for Gobodo API
|
|
19
|
+
*
|
|
20
|
+
* The version of the OpenAPI document: 0.1.34
|
|
21
|
+
* Contact: info@gobodo.io
|
|
22
|
+
*
|
|
23
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
24
|
+
* https://openapi-generator.tech
|
|
25
|
+
* Do not edit the class manually.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* The Profile model module.
|
|
30
|
+
* @module model/Profile
|
|
31
|
+
* @version 0.1.34
|
|
32
|
+
*/
|
|
33
|
+
var Profile = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new <code>Profile</code>.
|
|
36
|
+
* @alias module:model/Profile
|
|
37
|
+
*/
|
|
38
|
+
function Profile() {
|
|
39
|
+
_classCallCheck(this, Profile);
|
|
40
|
+
Profile.initialize(this);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Initializes the fields of this object.
|
|
45
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
46
|
+
* Only for internal use.
|
|
47
|
+
*/
|
|
48
|
+
_createClass(Profile, [{
|
|
49
|
+
key: "getUser",
|
|
50
|
+
value:
|
|
51
|
+
/**
|
|
52
|
+
* @return {module:model/User}
|
|
53
|
+
*/
|
|
54
|
+
function getUser() {
|
|
55
|
+
return this.user;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @param {module:model/User} user
|
|
60
|
+
*/
|
|
61
|
+
}, {
|
|
62
|
+
key: "setUser",
|
|
63
|
+
value: function setUser(user) {
|
|
64
|
+
this['user'] = user;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @return {module:model/Profiletype}
|
|
68
|
+
*/
|
|
69
|
+
}, {
|
|
70
|
+
key: "getProfiletype",
|
|
71
|
+
value: function getProfiletype() {
|
|
72
|
+
return this.profiletype;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @param {module:model/Profiletype} profiletype
|
|
77
|
+
*/
|
|
78
|
+
}, {
|
|
79
|
+
key: "setProfiletype",
|
|
80
|
+
value: function setProfiletype(profiletype) {
|
|
81
|
+
this['profiletype'] = profiletype;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @return {Object}
|
|
85
|
+
*/
|
|
86
|
+
}, {
|
|
87
|
+
key: "getData",
|
|
88
|
+
value: function getData() {
|
|
89
|
+
return this.data;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @param {Object} data
|
|
94
|
+
*/
|
|
95
|
+
}, {
|
|
96
|
+
key: "setData",
|
|
97
|
+
value: function setData(data) {
|
|
98
|
+
this['data'] = data;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* @return {Number}
|
|
102
|
+
*/
|
|
103
|
+
}, {
|
|
104
|
+
key: "getId",
|
|
105
|
+
value: function getId() {
|
|
106
|
+
return this.id;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @param {Number} id
|
|
111
|
+
*/
|
|
112
|
+
}, {
|
|
113
|
+
key: "setId",
|
|
114
|
+
value: function setId(id) {
|
|
115
|
+
this['id'] = id;
|
|
116
|
+
}
|
|
117
|
+
}], [{
|
|
118
|
+
key: "initialize",
|
|
119
|
+
value: function initialize(obj) {}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Constructs a <code>Profile</code> from a plain JavaScript object, optionally creating a new instance.
|
|
123
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
124
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
125
|
+
* @param {module:model/Profile} obj Optional instance to populate.
|
|
126
|
+
* @return {module:model/Profile} The populated <code>Profile</code> instance.
|
|
127
|
+
*/
|
|
128
|
+
}, {
|
|
129
|
+
key: "constructFromObject",
|
|
130
|
+
value: function constructFromObject(data, obj) {
|
|
131
|
+
if (data) {
|
|
132
|
+
obj = obj || new Profile();
|
|
133
|
+
if (data.hasOwnProperty('user')) {
|
|
134
|
+
obj['user'] = _User["default"].constructFromObject(data['user']);
|
|
135
|
+
}
|
|
136
|
+
if (data.hasOwnProperty('profiletype')) {
|
|
137
|
+
obj['profiletype'] = _Profiletype["default"].constructFromObject(data['profiletype']);
|
|
138
|
+
}
|
|
139
|
+
if (data.hasOwnProperty('data')) {
|
|
140
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
141
|
+
}
|
|
142
|
+
if (data.hasOwnProperty('id')) {
|
|
143
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
return obj;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Validates the JSON data with respect to <code>Profile</code>.
|
|
151
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
152
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>Profile</code>.
|
|
153
|
+
*/
|
|
154
|
+
}, {
|
|
155
|
+
key: "validateJSON",
|
|
156
|
+
value: function validateJSON(data) {
|
|
157
|
+
// validate the optional field `user`
|
|
158
|
+
if (data['user']) {
|
|
159
|
+
// data not null
|
|
160
|
+
_User["default"].validateJSON(data['user']);
|
|
161
|
+
}
|
|
162
|
+
// validate the optional field `profiletype`
|
|
163
|
+
if (data['profiletype']) {
|
|
164
|
+
// data not null
|
|
165
|
+
_Profiletype["default"].validateJSON(data['profiletype']);
|
|
166
|
+
}
|
|
167
|
+
return true;
|
|
168
|
+
}
|
|
169
|
+
}]);
|
|
170
|
+
return Profile;
|
|
171
|
+
}();
|
|
172
|
+
/**
|
|
173
|
+
* @member {module:model/User} user
|
|
174
|
+
*/
|
|
175
|
+
Profile.prototype['user'] = undefined;
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* @member {module:model/Profiletype} profiletype
|
|
179
|
+
*/
|
|
180
|
+
Profile.prototype['profiletype'] = undefined;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* @member {Object} data
|
|
184
|
+
*/
|
|
185
|
+
Profile.prototype['data'] = undefined;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* @member {Number} id
|
|
189
|
+
*/
|
|
190
|
+
Profile.prototype['id'] = undefined;
|
|
191
|
+
var _default = exports["default"] = Profile;
|
|
@@ -0,0 +1,210 @@
|
|
|
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 _SkinField = _interopRequireDefault(require("./SkinField"));
|
|
9
|
+
var _User = _interopRequireDefault(require("./User"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
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); }
|
|
12
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
|
|
13
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
14
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
15
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
16
|
+
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); } }
|
|
17
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
18
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
19
|
+
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); } /**
|
|
20
|
+
* gobodo-api
|
|
21
|
+
* REST Interface for Gobodo API
|
|
22
|
+
*
|
|
23
|
+
* The version of the OpenAPI document: 0.1.34
|
|
24
|
+
* Contact: info@gobodo.io
|
|
25
|
+
*
|
|
26
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
27
|
+
* https://openapi-generator.tech
|
|
28
|
+
* Do not edit the class manually.
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* The Profiletype model module.
|
|
33
|
+
* @module model/Profiletype
|
|
34
|
+
* @version 0.1.34
|
|
35
|
+
*/
|
|
36
|
+
var Profiletype = /*#__PURE__*/function () {
|
|
37
|
+
/**
|
|
38
|
+
* Constructs a new <code>Profiletype</code>.
|
|
39
|
+
* @alias module:model/Profiletype
|
|
40
|
+
*/
|
|
41
|
+
function Profiletype() {
|
|
42
|
+
_classCallCheck(this, Profiletype);
|
|
43
|
+
Profiletype.initialize(this);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Initializes the fields of this object.
|
|
48
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
49
|
+
* Only for internal use.
|
|
50
|
+
*/
|
|
51
|
+
_createClass(Profiletype, [{
|
|
52
|
+
key: "getSkinFields",
|
|
53
|
+
value:
|
|
54
|
+
/**
|
|
55
|
+
* @return {Array.<module:model/SkinField>}
|
|
56
|
+
*/
|
|
57
|
+
function getSkinFields() {
|
|
58
|
+
return this.skinFields;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @param {Array.<module:model/SkinField>} skinFields
|
|
63
|
+
*/
|
|
64
|
+
}, {
|
|
65
|
+
key: "setSkinFields",
|
|
66
|
+
value: function setSkinFields(skinFields) {
|
|
67
|
+
this['skinFields'] = skinFields;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @return {module:model/User}
|
|
71
|
+
*/
|
|
72
|
+
}, {
|
|
73
|
+
key: "getUser",
|
|
74
|
+
value: function getUser() {
|
|
75
|
+
return this.user;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @param {module:model/User} user
|
|
80
|
+
*/
|
|
81
|
+
}, {
|
|
82
|
+
key: "setUser",
|
|
83
|
+
value: function setUser(user) {
|
|
84
|
+
this['user'] = user;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* @return {Object}
|
|
88
|
+
*/
|
|
89
|
+
}, {
|
|
90
|
+
key: "getData",
|
|
91
|
+
value: function getData() {
|
|
92
|
+
return this.data;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @param {Object} data
|
|
97
|
+
*/
|
|
98
|
+
}, {
|
|
99
|
+
key: "setData",
|
|
100
|
+
value: function setData(data) {
|
|
101
|
+
this['data'] = data;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @return {Number}
|
|
105
|
+
*/
|
|
106
|
+
}, {
|
|
107
|
+
key: "getId",
|
|
108
|
+
value: function getId() {
|
|
109
|
+
return this.id;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* @param {Number} id
|
|
114
|
+
*/
|
|
115
|
+
}, {
|
|
116
|
+
key: "setId",
|
|
117
|
+
value: function setId(id) {
|
|
118
|
+
this['id'] = id;
|
|
119
|
+
}
|
|
120
|
+
}], [{
|
|
121
|
+
key: "initialize",
|
|
122
|
+
value: function initialize(obj) {}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Constructs a <code>Profiletype</code> from a plain JavaScript object, optionally creating a new instance.
|
|
126
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
127
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
128
|
+
* @param {module:model/Profiletype} obj Optional instance to populate.
|
|
129
|
+
* @return {module:model/Profiletype} The populated <code>Profiletype</code> instance.
|
|
130
|
+
*/
|
|
131
|
+
}, {
|
|
132
|
+
key: "constructFromObject",
|
|
133
|
+
value: function constructFromObject(data, obj) {
|
|
134
|
+
if (data) {
|
|
135
|
+
obj = obj || new Profiletype();
|
|
136
|
+
if (data.hasOwnProperty('skinFields')) {
|
|
137
|
+
obj['skinFields'] = _ApiClient["default"].convertToType(data['skinFields'], [_SkinField["default"]]);
|
|
138
|
+
}
|
|
139
|
+
if (data.hasOwnProperty('user')) {
|
|
140
|
+
obj['user'] = _User["default"].constructFromObject(data['user']);
|
|
141
|
+
}
|
|
142
|
+
if (data.hasOwnProperty('data')) {
|
|
143
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
144
|
+
}
|
|
145
|
+
if (data.hasOwnProperty('id')) {
|
|
146
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
return obj;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Validates the JSON data with respect to <code>Profiletype</code>.
|
|
154
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
155
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>Profiletype</code>.
|
|
156
|
+
*/
|
|
157
|
+
}, {
|
|
158
|
+
key: "validateJSON",
|
|
159
|
+
value: function validateJSON(data) {
|
|
160
|
+
if (data['skinFields']) {
|
|
161
|
+
// data not null
|
|
162
|
+
// ensure the json data is an array
|
|
163
|
+
if (!Array.isArray(data['skinFields'])) {
|
|
164
|
+
throw new Error("Expected the field `skinFields` to be an array in the JSON data but got " + data['skinFields']);
|
|
165
|
+
}
|
|
166
|
+
// validate the optional field `skinFields` (array)
|
|
167
|
+
var _iterator = _createForOfIteratorHelper(data['skinFields']),
|
|
168
|
+
_step;
|
|
169
|
+
try {
|
|
170
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
171
|
+
var item = _step.value;
|
|
172
|
+
_SkinField["default"].validateJSON(item);
|
|
173
|
+
}
|
|
174
|
+
} catch (err) {
|
|
175
|
+
_iterator.e(err);
|
|
176
|
+
} finally {
|
|
177
|
+
_iterator.f();
|
|
178
|
+
}
|
|
179
|
+
;
|
|
180
|
+
}
|
|
181
|
+
// validate the optional field `user`
|
|
182
|
+
if (data['user']) {
|
|
183
|
+
// data not null
|
|
184
|
+
_User["default"].validateJSON(data['user']);
|
|
185
|
+
}
|
|
186
|
+
return true;
|
|
187
|
+
}
|
|
188
|
+
}]);
|
|
189
|
+
return Profiletype;
|
|
190
|
+
}();
|
|
191
|
+
/**
|
|
192
|
+
* @member {Array.<module:model/SkinField>} skinFields
|
|
193
|
+
*/
|
|
194
|
+
Profiletype.prototype['skinFields'] = undefined;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @member {module:model/User} user
|
|
198
|
+
*/
|
|
199
|
+
Profiletype.prototype['user'] = undefined;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @member {Object} data
|
|
203
|
+
*/
|
|
204
|
+
Profiletype.prototype['data'] = undefined;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* @member {Number} id
|
|
208
|
+
*/
|
|
209
|
+
Profiletype.prototype['id'] = undefined;
|
|
210
|
+
var _default = exports["default"] = Profiletype;
|