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