@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,545 @@
|
|
|
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 _Image = _interopRequireDefault(require("./Image"));
|
|
9
|
+
var _Objecttype = _interopRequireDefault(require("./Objecttype"));
|
|
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 GraphObjectSchema model module.
|
|
30
|
+
* @module model/GraphObjectSchema
|
|
31
|
+
* @version 0.1.34
|
|
32
|
+
*/
|
|
33
|
+
var GraphObjectSchema = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new <code>GraphObjectSchema</code>.
|
|
36
|
+
* @alias module:model/GraphObjectSchema
|
|
37
|
+
*/
|
|
38
|
+
function GraphObjectSchema() {
|
|
39
|
+
_classCallCheck(this, GraphObjectSchema);
|
|
40
|
+
GraphObjectSchema.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(GraphObjectSchema, [{
|
|
49
|
+
key: "getObjecttype",
|
|
50
|
+
value:
|
|
51
|
+
/**
|
|
52
|
+
* @return {module:model/Objecttype}
|
|
53
|
+
*/
|
|
54
|
+
function getObjecttype() {
|
|
55
|
+
return this.objecttype;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @param {module:model/Objecttype} objecttype
|
|
60
|
+
*/
|
|
61
|
+
}, {
|
|
62
|
+
key: "setObjecttype",
|
|
63
|
+
value: function setObjecttype(objecttype) {
|
|
64
|
+
this['objecttype'] = objecttype;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @return {module:model/Image}
|
|
68
|
+
*/
|
|
69
|
+
}, {
|
|
70
|
+
key: "getMainphoto",
|
|
71
|
+
value: function getMainphoto() {
|
|
72
|
+
return this.mainphoto;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @param {module:model/Image} mainphoto
|
|
77
|
+
*/
|
|
78
|
+
}, {
|
|
79
|
+
key: "setMainphoto",
|
|
80
|
+
value: function setMainphoto(mainphoto) {
|
|
81
|
+
this['mainphoto'] = mainphoto;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Returns The Object Type of this Object
|
|
85
|
+
* @return {String}
|
|
86
|
+
*/
|
|
87
|
+
}, {
|
|
88
|
+
key: "getObjecttypekey",
|
|
89
|
+
value: function getObjecttypekey() {
|
|
90
|
+
return this.objecttypekey;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Sets The Object Type of this Object
|
|
95
|
+
* @param {String} objecttypekey The Object Type of this Object
|
|
96
|
+
*/
|
|
97
|
+
}, {
|
|
98
|
+
key: "setObjecttypekey",
|
|
99
|
+
value: function setObjecttypekey(objecttypekey) {
|
|
100
|
+
this['objecttypekey'] = objecttypekey;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Returns The creator of this Object
|
|
104
|
+
* @return {Number}
|
|
105
|
+
*/
|
|
106
|
+
}, {
|
|
107
|
+
key: "getCreatorpageid",
|
|
108
|
+
value: function getCreatorpageid() {
|
|
109
|
+
return this.creatorpageid;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Sets The creator of this Object
|
|
114
|
+
* @param {Number} creatorpageid The creator of this Object
|
|
115
|
+
*/
|
|
116
|
+
}, {
|
|
117
|
+
key: "setCreatorpageid",
|
|
118
|
+
value: function setCreatorpageid(creatorpageid) {
|
|
119
|
+
this['creatorpageid'] = creatorpageid;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Returns Actions performed on this object
|
|
123
|
+
* @return {String}
|
|
124
|
+
*/
|
|
125
|
+
}, {
|
|
126
|
+
key: "getActionsPerformed",
|
|
127
|
+
value: function getActionsPerformed() {
|
|
128
|
+
return this.actions_performed;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Sets Actions performed on this object
|
|
133
|
+
* @param {String} actionsPerformed Actions performed on this object
|
|
134
|
+
*/
|
|
135
|
+
}, {
|
|
136
|
+
key: "setActionsPerformed",
|
|
137
|
+
value: function setActionsPerformed(actionsPerformed) {
|
|
138
|
+
this['actions_performed'] = actionsPerformed;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Returns Label of this object
|
|
142
|
+
* @return {String}
|
|
143
|
+
*/
|
|
144
|
+
}, {
|
|
145
|
+
key: "getLabel",
|
|
146
|
+
value: function getLabel() {
|
|
147
|
+
return this.label;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Sets Label of this object
|
|
152
|
+
* @param {String} label Label of this object
|
|
153
|
+
*/
|
|
154
|
+
}, {
|
|
155
|
+
key: "setLabel",
|
|
156
|
+
value: function setLabel(label) {
|
|
157
|
+
this['label'] = label;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* @return {Object}
|
|
161
|
+
*/
|
|
162
|
+
}, {
|
|
163
|
+
key: "getTags",
|
|
164
|
+
value: function getTags() {
|
|
165
|
+
return this.tags;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @param {Object} tags
|
|
170
|
+
*/
|
|
171
|
+
}, {
|
|
172
|
+
key: "setTags",
|
|
173
|
+
value: function setTags(tags) {
|
|
174
|
+
this['tags'] = tags;
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* Returns Graphs this object is apart of
|
|
178
|
+
* @return {String}
|
|
179
|
+
*/
|
|
180
|
+
}, {
|
|
181
|
+
key: "getGraphs",
|
|
182
|
+
value: function getGraphs() {
|
|
183
|
+
return this.graphs;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Sets Graphs this object is apart of
|
|
188
|
+
* @param {String} graphs Graphs this object is apart of
|
|
189
|
+
*/
|
|
190
|
+
}, {
|
|
191
|
+
key: "setGraphs",
|
|
192
|
+
value: function setGraphs(graphs) {
|
|
193
|
+
this['graphs'] = graphs;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Returns Relationships on this object
|
|
197
|
+
* @return {String}
|
|
198
|
+
*/
|
|
199
|
+
}, {
|
|
200
|
+
key: "getRelationships",
|
|
201
|
+
value: function getRelationships() {
|
|
202
|
+
return this.relationships;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Sets Relationships on this object
|
|
207
|
+
* @param {String} relationships Relationships on this object
|
|
208
|
+
*/
|
|
209
|
+
}, {
|
|
210
|
+
key: "setRelationships",
|
|
211
|
+
value: function setRelationships(relationships) {
|
|
212
|
+
this['relationships'] = relationships;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* Returns Creation Date
|
|
216
|
+
* @return {Date}
|
|
217
|
+
*/
|
|
218
|
+
}, {
|
|
219
|
+
key: "getCreationdate",
|
|
220
|
+
value: function getCreationdate() {
|
|
221
|
+
return this.creationdate;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Sets Creation Date
|
|
226
|
+
* @param {Date} creationdate Creation Date
|
|
227
|
+
*/
|
|
228
|
+
}, {
|
|
229
|
+
key: "setCreationdate",
|
|
230
|
+
value: function setCreationdate(creationdate) {
|
|
231
|
+
this['creationdate'] = creationdate;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Returns Modification Date
|
|
235
|
+
* @return {Date}
|
|
236
|
+
*/
|
|
237
|
+
}, {
|
|
238
|
+
key: "getModificationdate",
|
|
239
|
+
value: function getModificationdate() {
|
|
240
|
+
return this.modificationdate;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Sets Modification Date
|
|
245
|
+
* @param {Date} modificationdate Modification Date
|
|
246
|
+
*/
|
|
247
|
+
}, {
|
|
248
|
+
key: "setModificationdate",
|
|
249
|
+
value: function setModificationdate(modificationdate) {
|
|
250
|
+
this['modificationdate'] = modificationdate;
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* @return {Boolean}
|
|
254
|
+
*/
|
|
255
|
+
}, {
|
|
256
|
+
key: "getSearchable",
|
|
257
|
+
value: function getSearchable() {
|
|
258
|
+
return this.searchable;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @param {Boolean} searchable
|
|
263
|
+
*/
|
|
264
|
+
}, {
|
|
265
|
+
key: "setSearchable",
|
|
266
|
+
value: function setSearchable(searchable) {
|
|
267
|
+
this['searchable'] = searchable;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* Returns The unique key of this entity
|
|
271
|
+
* @return {String}
|
|
272
|
+
*/
|
|
273
|
+
}, {
|
|
274
|
+
key: "getKey",
|
|
275
|
+
value: function getKey() {
|
|
276
|
+
return this.key;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* Sets The unique key of this entity
|
|
281
|
+
* @param {String} key The unique key of this entity
|
|
282
|
+
*/
|
|
283
|
+
}, {
|
|
284
|
+
key: "setKey",
|
|
285
|
+
value: function setKey(key) {
|
|
286
|
+
this['key'] = key;
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* Returns The creator of this Object
|
|
290
|
+
* @return {Number}
|
|
291
|
+
*/
|
|
292
|
+
}, {
|
|
293
|
+
key: "getCreatorid",
|
|
294
|
+
value: function getCreatorid() {
|
|
295
|
+
return this.creatorid;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Sets The creator of this Object
|
|
300
|
+
* @param {Number} creatorid The creator of this Object
|
|
301
|
+
*/
|
|
302
|
+
}, {
|
|
303
|
+
key: "setCreatorid",
|
|
304
|
+
value: function setCreatorid(creatorid) {
|
|
305
|
+
this['creatorid'] = creatorid;
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* @return {Object}
|
|
309
|
+
*/
|
|
310
|
+
}, {
|
|
311
|
+
key: "getData",
|
|
312
|
+
value: function getData() {
|
|
313
|
+
return this.data;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* @param {Object} data
|
|
318
|
+
*/
|
|
319
|
+
}, {
|
|
320
|
+
key: "setData",
|
|
321
|
+
value: function setData(data) {
|
|
322
|
+
this['data'] = data;
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* @return {Number}
|
|
326
|
+
*/
|
|
327
|
+
}, {
|
|
328
|
+
key: "getId",
|
|
329
|
+
value: function getId() {
|
|
330
|
+
return this.id;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
/**
|
|
334
|
+
* @param {Number} id
|
|
335
|
+
*/
|
|
336
|
+
}, {
|
|
337
|
+
key: "setId",
|
|
338
|
+
value: function setId(id) {
|
|
339
|
+
this['id'] = id;
|
|
340
|
+
}
|
|
341
|
+
}], [{
|
|
342
|
+
key: "initialize",
|
|
343
|
+
value: function initialize(obj) {}
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* Constructs a <code>GraphObjectSchema</code> from a plain JavaScript object, optionally creating a new instance.
|
|
347
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
348
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
349
|
+
* @param {module:model/GraphObjectSchema} obj Optional instance to populate.
|
|
350
|
+
* @return {module:model/GraphObjectSchema} The populated <code>GraphObjectSchema</code> instance.
|
|
351
|
+
*/
|
|
352
|
+
}, {
|
|
353
|
+
key: "constructFromObject",
|
|
354
|
+
value: function constructFromObject(data, obj) {
|
|
355
|
+
if (data) {
|
|
356
|
+
obj = obj || new GraphObjectSchema();
|
|
357
|
+
if (data.hasOwnProperty('objecttype')) {
|
|
358
|
+
obj['objecttype'] = _Objecttype["default"].constructFromObject(data['objecttype']);
|
|
359
|
+
}
|
|
360
|
+
if (data.hasOwnProperty('mainphoto')) {
|
|
361
|
+
obj['mainphoto'] = _Image["default"].constructFromObject(data['mainphoto']);
|
|
362
|
+
}
|
|
363
|
+
if (data.hasOwnProperty('objecttypekey')) {
|
|
364
|
+
obj['objecttypekey'] = _ApiClient["default"].convertToType(data['objecttypekey'], 'String');
|
|
365
|
+
}
|
|
366
|
+
if (data.hasOwnProperty('creatorpageid')) {
|
|
367
|
+
obj['creatorpageid'] = _ApiClient["default"].convertToType(data['creatorpageid'], 'Number');
|
|
368
|
+
}
|
|
369
|
+
if (data.hasOwnProperty('actions_performed')) {
|
|
370
|
+
obj['actions_performed'] = _ApiClient["default"].convertToType(data['actions_performed'], 'String');
|
|
371
|
+
}
|
|
372
|
+
if (data.hasOwnProperty('label')) {
|
|
373
|
+
obj['label'] = _ApiClient["default"].convertToType(data['label'], 'String');
|
|
374
|
+
}
|
|
375
|
+
if (data.hasOwnProperty('tags')) {
|
|
376
|
+
obj['tags'] = _ApiClient["default"].convertToType(data['tags'], Object);
|
|
377
|
+
}
|
|
378
|
+
if (data.hasOwnProperty('graphs')) {
|
|
379
|
+
obj['graphs'] = _ApiClient["default"].convertToType(data['graphs'], 'String');
|
|
380
|
+
}
|
|
381
|
+
if (data.hasOwnProperty('relationships')) {
|
|
382
|
+
obj['relationships'] = _ApiClient["default"].convertToType(data['relationships'], 'String');
|
|
383
|
+
}
|
|
384
|
+
if (data.hasOwnProperty('creationdate')) {
|
|
385
|
+
obj['creationdate'] = _ApiClient["default"].convertToType(data['creationdate'], 'Date');
|
|
386
|
+
}
|
|
387
|
+
if (data.hasOwnProperty('modificationdate')) {
|
|
388
|
+
obj['modificationdate'] = _ApiClient["default"].convertToType(data['modificationdate'], 'Date');
|
|
389
|
+
}
|
|
390
|
+
if (data.hasOwnProperty('searchable')) {
|
|
391
|
+
obj['searchable'] = _ApiClient["default"].convertToType(data['searchable'], 'Boolean');
|
|
392
|
+
}
|
|
393
|
+
if (data.hasOwnProperty('key')) {
|
|
394
|
+
obj['key'] = _ApiClient["default"].convertToType(data['key'], 'String');
|
|
395
|
+
}
|
|
396
|
+
if (data.hasOwnProperty('creatorid')) {
|
|
397
|
+
obj['creatorid'] = _ApiClient["default"].convertToType(data['creatorid'], 'Number');
|
|
398
|
+
}
|
|
399
|
+
if (data.hasOwnProperty('data')) {
|
|
400
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
401
|
+
}
|
|
402
|
+
if (data.hasOwnProperty('id')) {
|
|
403
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
return obj;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* Validates the JSON data with respect to <code>GraphObjectSchema</code>.
|
|
411
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
412
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>GraphObjectSchema</code>.
|
|
413
|
+
*/
|
|
414
|
+
}, {
|
|
415
|
+
key: "validateJSON",
|
|
416
|
+
value: function validateJSON(data) {
|
|
417
|
+
// validate the optional field `objecttype`
|
|
418
|
+
if (data['objecttype']) {
|
|
419
|
+
// data not null
|
|
420
|
+
_Objecttype["default"].validateJSON(data['objecttype']);
|
|
421
|
+
}
|
|
422
|
+
// validate the optional field `mainphoto`
|
|
423
|
+
if (data['mainphoto']) {
|
|
424
|
+
// data not null
|
|
425
|
+
_Image["default"].validateJSON(data['mainphoto']);
|
|
426
|
+
}
|
|
427
|
+
// ensure the json data is a string
|
|
428
|
+
if (data['objecttypekey'] && !(typeof data['objecttypekey'] === 'string' || data['objecttypekey'] instanceof String)) {
|
|
429
|
+
throw new Error("Expected the field `objecttypekey` to be a primitive type in the JSON string but got " + data['objecttypekey']);
|
|
430
|
+
}
|
|
431
|
+
// ensure the json data is a string
|
|
432
|
+
if (data['actions_performed'] && !(typeof data['actions_performed'] === 'string' || data['actions_performed'] instanceof String)) {
|
|
433
|
+
throw new Error("Expected the field `actions_performed` to be a primitive type in the JSON string but got " + data['actions_performed']);
|
|
434
|
+
}
|
|
435
|
+
// ensure the json data is a string
|
|
436
|
+
if (data['label'] && !(typeof data['label'] === 'string' || data['label'] instanceof String)) {
|
|
437
|
+
throw new Error("Expected the field `label` to be a primitive type in the JSON string but got " + data['label']);
|
|
438
|
+
}
|
|
439
|
+
// ensure the json data is a string
|
|
440
|
+
if (data['graphs'] && !(typeof data['graphs'] === 'string' || data['graphs'] instanceof String)) {
|
|
441
|
+
throw new Error("Expected the field `graphs` to be a primitive type in the JSON string but got " + data['graphs']);
|
|
442
|
+
}
|
|
443
|
+
// ensure the json data is a string
|
|
444
|
+
if (data['relationships'] && !(typeof data['relationships'] === 'string' || data['relationships'] instanceof String)) {
|
|
445
|
+
throw new Error("Expected the field `relationships` to be a primitive type in the JSON string but got " + data['relationships']);
|
|
446
|
+
}
|
|
447
|
+
// ensure the json data is a string
|
|
448
|
+
if (data['key'] && !(typeof data['key'] === 'string' || data['key'] instanceof String)) {
|
|
449
|
+
throw new Error("Expected the field `key` to be a primitive type in the JSON string but got " + data['key']);
|
|
450
|
+
}
|
|
451
|
+
return true;
|
|
452
|
+
}
|
|
453
|
+
}]);
|
|
454
|
+
return GraphObjectSchema;
|
|
455
|
+
}();
|
|
456
|
+
/**
|
|
457
|
+
* @member {module:model/Objecttype} objecttype
|
|
458
|
+
*/
|
|
459
|
+
GraphObjectSchema.prototype['objecttype'] = undefined;
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* @member {module:model/Image} mainphoto
|
|
463
|
+
*/
|
|
464
|
+
GraphObjectSchema.prototype['mainphoto'] = undefined;
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* The Object Type of this Object
|
|
468
|
+
* @member {String} objecttypekey
|
|
469
|
+
*/
|
|
470
|
+
GraphObjectSchema.prototype['objecttypekey'] = undefined;
|
|
471
|
+
|
|
472
|
+
/**
|
|
473
|
+
* The creator of this Object
|
|
474
|
+
* @member {Number} creatorpageid
|
|
475
|
+
*/
|
|
476
|
+
GraphObjectSchema.prototype['creatorpageid'] = undefined;
|
|
477
|
+
|
|
478
|
+
/**
|
|
479
|
+
* Actions performed on this object
|
|
480
|
+
* @member {String} actions_performed
|
|
481
|
+
*/
|
|
482
|
+
GraphObjectSchema.prototype['actions_performed'] = undefined;
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* Label of this object
|
|
486
|
+
* @member {String} label
|
|
487
|
+
*/
|
|
488
|
+
GraphObjectSchema.prototype['label'] = undefined;
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* @member {Object} tags
|
|
492
|
+
*/
|
|
493
|
+
GraphObjectSchema.prototype['tags'] = undefined;
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Graphs this object is apart of
|
|
497
|
+
* @member {String} graphs
|
|
498
|
+
*/
|
|
499
|
+
GraphObjectSchema.prototype['graphs'] = undefined;
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* Relationships on this object
|
|
503
|
+
* @member {String} relationships
|
|
504
|
+
*/
|
|
505
|
+
GraphObjectSchema.prototype['relationships'] = undefined;
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* Creation Date
|
|
509
|
+
* @member {Date} creationdate
|
|
510
|
+
*/
|
|
511
|
+
GraphObjectSchema.prototype['creationdate'] = undefined;
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* Modification Date
|
|
515
|
+
* @member {Date} modificationdate
|
|
516
|
+
*/
|
|
517
|
+
GraphObjectSchema.prototype['modificationdate'] = undefined;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* @member {Boolean} searchable
|
|
521
|
+
*/
|
|
522
|
+
GraphObjectSchema.prototype['searchable'] = undefined;
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* The unique key of this entity
|
|
526
|
+
* @member {String} key
|
|
527
|
+
*/
|
|
528
|
+
GraphObjectSchema.prototype['key'] = undefined;
|
|
529
|
+
|
|
530
|
+
/**
|
|
531
|
+
* The creator of this Object
|
|
532
|
+
* @member {Number} creatorid
|
|
533
|
+
*/
|
|
534
|
+
GraphObjectSchema.prototype['creatorid'] = undefined;
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* @member {Object} data
|
|
538
|
+
*/
|
|
539
|
+
GraphObjectSchema.prototype['data'] = undefined;
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* @member {Number} id
|
|
543
|
+
*/
|
|
544
|
+
GraphObjectSchema.prototype['id'] = undefined;
|
|
545
|
+
var _default = exports["default"] = GraphObjectSchema;
|