@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,645 @@
|
|
|
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 _Member = _interopRequireDefault(require("./Member"));
|
|
9
|
+
var _SkinField = _interopRequireDefault(require("./SkinField"));
|
|
10
|
+
var _TemplateSchema = _interopRequireDefault(require("./TemplateSchema"));
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
12
|
+
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); }
|
|
13
|
+
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; } } }; }
|
|
14
|
+
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); }
|
|
15
|
+
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; }
|
|
16
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
17
|
+
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); } }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
20
|
+
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); } /**
|
|
21
|
+
* gobodo-api
|
|
22
|
+
* REST Interface for Gobodo API
|
|
23
|
+
*
|
|
24
|
+
* The version of the OpenAPI document: 0.1.34
|
|
25
|
+
* Contact: info@gobodo.io
|
|
26
|
+
*
|
|
27
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
28
|
+
* https://openapi-generator.tech
|
|
29
|
+
* Do not edit the class manually.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
/**
|
|
33
|
+
* The GraphObjectTypeSchema model module.
|
|
34
|
+
* @module model/GraphObjectTypeSchema
|
|
35
|
+
* @version 0.1.34
|
|
36
|
+
*/
|
|
37
|
+
var GraphObjectTypeSchema = /*#__PURE__*/function () {
|
|
38
|
+
/**
|
|
39
|
+
* Constructs a new <code>GraphObjectTypeSchema</code>.
|
|
40
|
+
* @alias module:model/GraphObjectTypeSchema
|
|
41
|
+
*/
|
|
42
|
+
function GraphObjectTypeSchema() {
|
|
43
|
+
_classCallCheck(this, GraphObjectTypeSchema);
|
|
44
|
+
GraphObjectTypeSchema.initialize(this);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Initializes the fields of this object.
|
|
49
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
50
|
+
* Only for internal use.
|
|
51
|
+
*/
|
|
52
|
+
_createClass(GraphObjectTypeSchema, [{
|
|
53
|
+
key: "getName",
|
|
54
|
+
value:
|
|
55
|
+
/**
|
|
56
|
+
* @return {String}
|
|
57
|
+
*/
|
|
58
|
+
function getName() {
|
|
59
|
+
return this.name;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @param {String} name
|
|
64
|
+
*/
|
|
65
|
+
}, {
|
|
66
|
+
key: "setName",
|
|
67
|
+
value: function setName(name) {
|
|
68
|
+
this['name'] = name;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @return {Boolean}
|
|
72
|
+
*/
|
|
73
|
+
}, {
|
|
74
|
+
key: "getAbstract",
|
|
75
|
+
value: function getAbstract() {
|
|
76
|
+
return this["abstract"];
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @param {Boolean} _abstract
|
|
81
|
+
*/
|
|
82
|
+
}, {
|
|
83
|
+
key: "setAbstract",
|
|
84
|
+
value: function setAbstract(_abstract) {
|
|
85
|
+
this['abstract'] = _abstract;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* @return {module:model/TemplateSchema}
|
|
89
|
+
*/
|
|
90
|
+
}, {
|
|
91
|
+
key: "getTemplate",
|
|
92
|
+
value: function getTemplate() {
|
|
93
|
+
return this.template;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @param {module:model/TemplateSchema} template
|
|
98
|
+
*/
|
|
99
|
+
}, {
|
|
100
|
+
key: "setTemplate",
|
|
101
|
+
value: function setTemplate(template) {
|
|
102
|
+
this['template'] = template;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* @return {Boolean}
|
|
106
|
+
*/
|
|
107
|
+
}, {
|
|
108
|
+
key: "getHiddenFromCreationScreen",
|
|
109
|
+
value: function getHiddenFromCreationScreen() {
|
|
110
|
+
return this.hiddenFromCreationScreen;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @param {Boolean} hiddenFromCreationScreen
|
|
115
|
+
*/
|
|
116
|
+
}, {
|
|
117
|
+
key: "setHiddenFromCreationScreen",
|
|
118
|
+
value: function setHiddenFromCreationScreen(hiddenFromCreationScreen) {
|
|
119
|
+
this['hiddenFromCreationScreen'] = hiddenFromCreationScreen;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* @return {Boolean}
|
|
123
|
+
*/
|
|
124
|
+
}, {
|
|
125
|
+
key: "getSearchable",
|
|
126
|
+
value: function getSearchable() {
|
|
127
|
+
return this.searchable;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @param {Boolean} searchable
|
|
132
|
+
*/
|
|
133
|
+
}, {
|
|
134
|
+
key: "setSearchable",
|
|
135
|
+
value: function setSearchable(searchable) {
|
|
136
|
+
this['searchable'] = searchable;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Returns Determines whether the user that's creating an instance of this type is required to be an Organization Page
|
|
140
|
+
* @return {Boolean}
|
|
141
|
+
*/
|
|
142
|
+
}, {
|
|
143
|
+
key: "getCreatorrequiredtobepage",
|
|
144
|
+
value: function getCreatorrequiredtobepage() {
|
|
145
|
+
return this.creatorrequiredtobepage;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Sets Determines whether the user that's creating an instance of this type is required to be an Organization Page
|
|
150
|
+
* @param {Boolean} creatorrequiredtobepage Determines whether the user that's creating an instance of this type is required to be an Organization Page
|
|
151
|
+
*/
|
|
152
|
+
}, {
|
|
153
|
+
key: "setCreatorrequiredtobepage",
|
|
154
|
+
value: function setCreatorrequiredtobepage(creatorrequiredtobepage) {
|
|
155
|
+
this['creatorrequiredtobepage'] = creatorrequiredtobepage;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* @return {Object}
|
|
159
|
+
*/
|
|
160
|
+
}, {
|
|
161
|
+
key: "getDefinitions",
|
|
162
|
+
value: function getDefinitions() {
|
|
163
|
+
return this.definitions;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* @param {Object} definitions
|
|
168
|
+
*/
|
|
169
|
+
}, {
|
|
170
|
+
key: "setDefinitions",
|
|
171
|
+
value: function setDefinitions(definitions) {
|
|
172
|
+
this['definitions'] = definitions;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @return {Object}
|
|
176
|
+
*/
|
|
177
|
+
}, {
|
|
178
|
+
key: "getWorkflows",
|
|
179
|
+
value: function getWorkflows() {
|
|
180
|
+
return this.workflows;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @param {Object} workflows
|
|
185
|
+
*/
|
|
186
|
+
}, {
|
|
187
|
+
key: "setWorkflows",
|
|
188
|
+
value: function setWorkflows(workflows) {
|
|
189
|
+
this['workflows'] = workflows;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* @return {String}
|
|
193
|
+
*/
|
|
194
|
+
}, {
|
|
195
|
+
key: "getDescription",
|
|
196
|
+
value: function getDescription() {
|
|
197
|
+
return this.description;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* @param {String} description
|
|
202
|
+
*/
|
|
203
|
+
}, {
|
|
204
|
+
key: "setDescription",
|
|
205
|
+
value: function setDescription(description) {
|
|
206
|
+
this['description'] = description;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* @return {module:model/Member}
|
|
210
|
+
*/
|
|
211
|
+
}, {
|
|
212
|
+
key: "getCreator",
|
|
213
|
+
value: function getCreator() {
|
|
214
|
+
return this.creator;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* @param {module:model/Member} creator
|
|
219
|
+
*/
|
|
220
|
+
}, {
|
|
221
|
+
key: "setCreator",
|
|
222
|
+
value: function setCreator(creator) {
|
|
223
|
+
this['creator'] = creator;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Returns The modification date of this entity
|
|
227
|
+
* @return {Date}
|
|
228
|
+
*/
|
|
229
|
+
}, {
|
|
230
|
+
key: "getModificationdate",
|
|
231
|
+
value: function getModificationdate() {
|
|
232
|
+
return this.modificationdate;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Sets The modification date of this entity
|
|
237
|
+
* @param {Date} modificationdate The modification date of this entity
|
|
238
|
+
*/
|
|
239
|
+
}, {
|
|
240
|
+
key: "setModificationdate",
|
|
241
|
+
value: function setModificationdate(modificationdate) {
|
|
242
|
+
this['modificationdate'] = modificationdate;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* @return {Object}
|
|
246
|
+
*/
|
|
247
|
+
}, {
|
|
248
|
+
key: "getActionTypes",
|
|
249
|
+
value: function getActionTypes() {
|
|
250
|
+
return this.actionTypes;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* @param {Object} actionTypes
|
|
255
|
+
*/
|
|
256
|
+
}, {
|
|
257
|
+
key: "setActionTypes",
|
|
258
|
+
value: function setActionTypes(actionTypes) {
|
|
259
|
+
this['actionTypes'] = actionTypes;
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* @return {String}
|
|
263
|
+
*/
|
|
264
|
+
}, {
|
|
265
|
+
key: "getSingularname",
|
|
266
|
+
value: function getSingularname() {
|
|
267
|
+
return this.singularname;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* @param {String} singularname
|
|
272
|
+
*/
|
|
273
|
+
}, {
|
|
274
|
+
key: "setSingularname",
|
|
275
|
+
value: function setSingularname(singularname) {
|
|
276
|
+
this['singularname'] = singularname;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* @return {String}
|
|
280
|
+
*/
|
|
281
|
+
}, {
|
|
282
|
+
key: "getPluralname",
|
|
283
|
+
value: function getPluralname() {
|
|
284
|
+
return this.pluralname;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* @param {String} pluralname
|
|
289
|
+
*/
|
|
290
|
+
}, {
|
|
291
|
+
key: "setPluralname",
|
|
292
|
+
value: function setPluralname(pluralname) {
|
|
293
|
+
this['pluralname'] = pluralname;
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* @return {Number}
|
|
297
|
+
*/
|
|
298
|
+
}, {
|
|
299
|
+
key: "getCreatorId",
|
|
300
|
+
value: function getCreatorId() {
|
|
301
|
+
return this.creatorId;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* @param {Number} creatorId
|
|
306
|
+
*/
|
|
307
|
+
}, {
|
|
308
|
+
key: "setCreatorId",
|
|
309
|
+
value: function setCreatorId(creatorId) {
|
|
310
|
+
this['creatorId'] = creatorId;
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Returns The unique key of this entity
|
|
314
|
+
* @return {String}
|
|
315
|
+
*/
|
|
316
|
+
}, {
|
|
317
|
+
key: "getKey",
|
|
318
|
+
value: function getKey() {
|
|
319
|
+
return this.key;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Sets The unique key of this entity
|
|
324
|
+
* @param {String} key The unique key of this entity
|
|
325
|
+
*/
|
|
326
|
+
}, {
|
|
327
|
+
key: "setKey",
|
|
328
|
+
value: function setKey(key) {
|
|
329
|
+
this['key'] = key;
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* @return {Object}
|
|
333
|
+
*/
|
|
334
|
+
}, {
|
|
335
|
+
key: "getMethods",
|
|
336
|
+
value: function getMethods() {
|
|
337
|
+
return this.methods;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* @param {Object} methods
|
|
342
|
+
*/
|
|
343
|
+
}, {
|
|
344
|
+
key: "setMethods",
|
|
345
|
+
value: function setMethods(methods) {
|
|
346
|
+
this['methods'] = methods;
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* @return {Array.<module:model/SkinField>}
|
|
350
|
+
*/
|
|
351
|
+
}, {
|
|
352
|
+
key: "getSkinFields",
|
|
353
|
+
value: function getSkinFields() {
|
|
354
|
+
return this.skinFields;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* @param {Array.<module:model/SkinField>} skinFields
|
|
359
|
+
*/
|
|
360
|
+
}, {
|
|
361
|
+
key: "setSkinFields",
|
|
362
|
+
value: function setSkinFields(skinFields) {
|
|
363
|
+
this['skinFields'] = skinFields;
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* @return {Object}
|
|
367
|
+
*/
|
|
368
|
+
}, {
|
|
369
|
+
key: "getData",
|
|
370
|
+
value: function getData() {
|
|
371
|
+
return this.data;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* @param {Object} data
|
|
376
|
+
*/
|
|
377
|
+
}, {
|
|
378
|
+
key: "setData",
|
|
379
|
+
value: function setData(data) {
|
|
380
|
+
this['data'] = data;
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* @return {Number}
|
|
384
|
+
*/
|
|
385
|
+
}, {
|
|
386
|
+
key: "getId",
|
|
387
|
+
value: function getId() {
|
|
388
|
+
return this.id;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* @param {Number} id
|
|
393
|
+
*/
|
|
394
|
+
}, {
|
|
395
|
+
key: "setId",
|
|
396
|
+
value: function setId(id) {
|
|
397
|
+
this['id'] = id;
|
|
398
|
+
}
|
|
399
|
+
}], [{
|
|
400
|
+
key: "initialize",
|
|
401
|
+
value: function initialize(obj) {}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Constructs a <code>GraphObjectTypeSchema</code> from a plain JavaScript object, optionally creating a new instance.
|
|
405
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
406
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
407
|
+
* @param {module:model/GraphObjectTypeSchema} obj Optional instance to populate.
|
|
408
|
+
* @return {module:model/GraphObjectTypeSchema} The populated <code>GraphObjectTypeSchema</code> instance.
|
|
409
|
+
*/
|
|
410
|
+
}, {
|
|
411
|
+
key: "constructFromObject",
|
|
412
|
+
value: function constructFromObject(data, obj) {
|
|
413
|
+
if (data) {
|
|
414
|
+
obj = obj || new GraphObjectTypeSchema();
|
|
415
|
+
if (data.hasOwnProperty('name')) {
|
|
416
|
+
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
417
|
+
}
|
|
418
|
+
if (data.hasOwnProperty('abstract')) {
|
|
419
|
+
obj['abstract'] = _ApiClient["default"].convertToType(data['abstract'], 'Boolean');
|
|
420
|
+
}
|
|
421
|
+
if (data.hasOwnProperty('template')) {
|
|
422
|
+
obj['template'] = _TemplateSchema["default"].constructFromObject(data['template']);
|
|
423
|
+
}
|
|
424
|
+
if (data.hasOwnProperty('hiddenFromCreationScreen')) {
|
|
425
|
+
obj['hiddenFromCreationScreen'] = _ApiClient["default"].convertToType(data['hiddenFromCreationScreen'], 'Boolean');
|
|
426
|
+
}
|
|
427
|
+
if (data.hasOwnProperty('searchable')) {
|
|
428
|
+
obj['searchable'] = _ApiClient["default"].convertToType(data['searchable'], 'Boolean');
|
|
429
|
+
}
|
|
430
|
+
if (data.hasOwnProperty('creatorrequiredtobepage')) {
|
|
431
|
+
obj['creatorrequiredtobepage'] = _ApiClient["default"].convertToType(data['creatorrequiredtobepage'], 'Boolean');
|
|
432
|
+
}
|
|
433
|
+
if (data.hasOwnProperty('definitions')) {
|
|
434
|
+
obj['definitions'] = _ApiClient["default"].convertToType(data['definitions'], Object);
|
|
435
|
+
}
|
|
436
|
+
if (data.hasOwnProperty('workflows')) {
|
|
437
|
+
obj['workflows'] = _ApiClient["default"].convertToType(data['workflows'], Object);
|
|
438
|
+
}
|
|
439
|
+
if (data.hasOwnProperty('description')) {
|
|
440
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
441
|
+
}
|
|
442
|
+
if (data.hasOwnProperty('creator')) {
|
|
443
|
+
obj['creator'] = _Member["default"].constructFromObject(data['creator']);
|
|
444
|
+
}
|
|
445
|
+
if (data.hasOwnProperty('modificationdate')) {
|
|
446
|
+
obj['modificationdate'] = _ApiClient["default"].convertToType(data['modificationdate'], 'Date');
|
|
447
|
+
}
|
|
448
|
+
if (data.hasOwnProperty('actionTypes')) {
|
|
449
|
+
obj['actionTypes'] = _ApiClient["default"].convertToType(data['actionTypes'], Object);
|
|
450
|
+
}
|
|
451
|
+
if (data.hasOwnProperty('singularname')) {
|
|
452
|
+
obj['singularname'] = _ApiClient["default"].convertToType(data['singularname'], 'String');
|
|
453
|
+
}
|
|
454
|
+
if (data.hasOwnProperty('pluralname')) {
|
|
455
|
+
obj['pluralname'] = _ApiClient["default"].convertToType(data['pluralname'], 'String');
|
|
456
|
+
}
|
|
457
|
+
if (data.hasOwnProperty('creatorId')) {
|
|
458
|
+
obj['creatorId'] = _ApiClient["default"].convertToType(data['creatorId'], 'Number');
|
|
459
|
+
}
|
|
460
|
+
if (data.hasOwnProperty('key')) {
|
|
461
|
+
obj['key'] = _ApiClient["default"].convertToType(data['key'], 'String');
|
|
462
|
+
}
|
|
463
|
+
if (data.hasOwnProperty('methods')) {
|
|
464
|
+
obj['methods'] = _ApiClient["default"].convertToType(data['methods'], Object);
|
|
465
|
+
}
|
|
466
|
+
if (data.hasOwnProperty('skinFields')) {
|
|
467
|
+
obj['skinFields'] = _ApiClient["default"].convertToType(data['skinFields'], [_SkinField["default"]]);
|
|
468
|
+
}
|
|
469
|
+
if (data.hasOwnProperty('data')) {
|
|
470
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
471
|
+
}
|
|
472
|
+
if (data.hasOwnProperty('id')) {
|
|
473
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
return obj;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* Validates the JSON data with respect to <code>GraphObjectTypeSchema</code>.
|
|
481
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
482
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>GraphObjectTypeSchema</code>.
|
|
483
|
+
*/
|
|
484
|
+
}, {
|
|
485
|
+
key: "validateJSON",
|
|
486
|
+
value: function validateJSON(data) {
|
|
487
|
+
// ensure the json data is a string
|
|
488
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
489
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
490
|
+
}
|
|
491
|
+
// validate the optional field `template`
|
|
492
|
+
if (data['template']) {
|
|
493
|
+
// data not null
|
|
494
|
+
_TemplateSchema["default"].validateJSON(data['template']);
|
|
495
|
+
}
|
|
496
|
+
// ensure the json data is a string
|
|
497
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
498
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
499
|
+
}
|
|
500
|
+
// validate the optional field `creator`
|
|
501
|
+
if (data['creator']) {
|
|
502
|
+
// data not null
|
|
503
|
+
_Member["default"].validateJSON(data['creator']);
|
|
504
|
+
}
|
|
505
|
+
// ensure the json data is a string
|
|
506
|
+
if (data['singularname'] && !(typeof data['singularname'] === 'string' || data['singularname'] instanceof String)) {
|
|
507
|
+
throw new Error("Expected the field `singularname` to be a primitive type in the JSON string but got " + data['singularname']);
|
|
508
|
+
}
|
|
509
|
+
// ensure the json data is a string
|
|
510
|
+
if (data['pluralname'] && !(typeof data['pluralname'] === 'string' || data['pluralname'] instanceof String)) {
|
|
511
|
+
throw new Error("Expected the field `pluralname` to be a primitive type in the JSON string but got " + data['pluralname']);
|
|
512
|
+
}
|
|
513
|
+
// ensure the json data is a string
|
|
514
|
+
if (data['key'] && !(typeof data['key'] === 'string' || data['key'] instanceof String)) {
|
|
515
|
+
throw new Error("Expected the field `key` to be a primitive type in the JSON string but got " + data['key']);
|
|
516
|
+
}
|
|
517
|
+
if (data['skinFields']) {
|
|
518
|
+
// data not null
|
|
519
|
+
// ensure the json data is an array
|
|
520
|
+
if (!Array.isArray(data['skinFields'])) {
|
|
521
|
+
throw new Error("Expected the field `skinFields` to be an array in the JSON data but got " + data['skinFields']);
|
|
522
|
+
}
|
|
523
|
+
// validate the optional field `skinFields` (array)
|
|
524
|
+
var _iterator = _createForOfIteratorHelper(data['skinFields']),
|
|
525
|
+
_step;
|
|
526
|
+
try {
|
|
527
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
528
|
+
var item = _step.value;
|
|
529
|
+
_SkinField["default"].validateJSON(item);
|
|
530
|
+
}
|
|
531
|
+
} catch (err) {
|
|
532
|
+
_iterator.e(err);
|
|
533
|
+
} finally {
|
|
534
|
+
_iterator.f();
|
|
535
|
+
}
|
|
536
|
+
;
|
|
537
|
+
}
|
|
538
|
+
return true;
|
|
539
|
+
}
|
|
540
|
+
}]);
|
|
541
|
+
return GraphObjectTypeSchema;
|
|
542
|
+
}();
|
|
543
|
+
/**
|
|
544
|
+
* @member {String} name
|
|
545
|
+
*/
|
|
546
|
+
GraphObjectTypeSchema.prototype['name'] = undefined;
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* @member {Boolean} abstract
|
|
550
|
+
*/
|
|
551
|
+
GraphObjectTypeSchema.prototype['abstract'] = undefined;
|
|
552
|
+
|
|
553
|
+
/**
|
|
554
|
+
* @member {module:model/TemplateSchema} template
|
|
555
|
+
*/
|
|
556
|
+
GraphObjectTypeSchema.prototype['template'] = undefined;
|
|
557
|
+
|
|
558
|
+
/**
|
|
559
|
+
* @member {Boolean} hiddenFromCreationScreen
|
|
560
|
+
*/
|
|
561
|
+
GraphObjectTypeSchema.prototype['hiddenFromCreationScreen'] = undefined;
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* @member {Boolean} searchable
|
|
565
|
+
*/
|
|
566
|
+
GraphObjectTypeSchema.prototype['searchable'] = undefined;
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* Determines whether the user that's creating an instance of this type is required to be an Organization Page
|
|
570
|
+
* @member {Boolean} creatorrequiredtobepage
|
|
571
|
+
*/
|
|
572
|
+
GraphObjectTypeSchema.prototype['creatorrequiredtobepage'] = undefined;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* @member {Object} definitions
|
|
576
|
+
*/
|
|
577
|
+
GraphObjectTypeSchema.prototype['definitions'] = undefined;
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* @member {Object} workflows
|
|
581
|
+
*/
|
|
582
|
+
GraphObjectTypeSchema.prototype['workflows'] = undefined;
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* @member {String} description
|
|
586
|
+
*/
|
|
587
|
+
GraphObjectTypeSchema.prototype['description'] = undefined;
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* @member {module:model/Member} creator
|
|
591
|
+
*/
|
|
592
|
+
GraphObjectTypeSchema.prototype['creator'] = undefined;
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* The modification date of this entity
|
|
596
|
+
* @member {Date} modificationdate
|
|
597
|
+
*/
|
|
598
|
+
GraphObjectTypeSchema.prototype['modificationdate'] = undefined;
|
|
599
|
+
|
|
600
|
+
/**
|
|
601
|
+
* @member {Object} actionTypes
|
|
602
|
+
*/
|
|
603
|
+
GraphObjectTypeSchema.prototype['actionTypes'] = undefined;
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* @member {String} singularname
|
|
607
|
+
*/
|
|
608
|
+
GraphObjectTypeSchema.prototype['singularname'] = undefined;
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* @member {String} pluralname
|
|
612
|
+
*/
|
|
613
|
+
GraphObjectTypeSchema.prototype['pluralname'] = undefined;
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* @member {Number} creatorId
|
|
617
|
+
*/
|
|
618
|
+
GraphObjectTypeSchema.prototype['creatorId'] = undefined;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* The unique key of this entity
|
|
622
|
+
* @member {String} key
|
|
623
|
+
*/
|
|
624
|
+
GraphObjectTypeSchema.prototype['key'] = undefined;
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* @member {Object} methods
|
|
628
|
+
*/
|
|
629
|
+
GraphObjectTypeSchema.prototype['methods'] = undefined;
|
|
630
|
+
|
|
631
|
+
/**
|
|
632
|
+
* @member {Array.<module:model/SkinField>} skinFields
|
|
633
|
+
*/
|
|
634
|
+
GraphObjectTypeSchema.prototype['skinFields'] = undefined;
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* @member {Object} data
|
|
638
|
+
*/
|
|
639
|
+
GraphObjectTypeSchema.prototype['data'] = undefined;
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* @member {Number} id
|
|
643
|
+
*/
|
|
644
|
+
GraphObjectTypeSchema.prototype['id'] = undefined;
|
|
645
|
+
var _default = exports["default"] = GraphObjectTypeSchema;
|