@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,675 @@
|
|
|
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 _Template = _interopRequireDefault(require("./Template"));
|
|
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 GraphRelationshipType model module.
|
|
30
|
+
* @module model/GraphRelationshipType
|
|
31
|
+
* @version 0.1.34
|
|
32
|
+
*/
|
|
33
|
+
var GraphRelationshipType = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new <code>GraphRelationshipType</code>.
|
|
36
|
+
* @alias module:model/GraphRelationshipType
|
|
37
|
+
*/
|
|
38
|
+
function GraphRelationshipType() {
|
|
39
|
+
_classCallCheck(this, GraphRelationshipType);
|
|
40
|
+
GraphRelationshipType.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(GraphRelationshipType, [{
|
|
49
|
+
key: "getCreator",
|
|
50
|
+
value:
|
|
51
|
+
/**
|
|
52
|
+
* @return {module:model/Member}
|
|
53
|
+
*/
|
|
54
|
+
function getCreator() {
|
|
55
|
+
return this.creator;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @param {module:model/Member} creator
|
|
60
|
+
*/
|
|
61
|
+
}, {
|
|
62
|
+
key: "setCreator",
|
|
63
|
+
value: function setCreator(creator) {
|
|
64
|
+
this['creator'] = creator;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Returns The modification date of this entity
|
|
68
|
+
* @return {Date}
|
|
69
|
+
*/
|
|
70
|
+
}, {
|
|
71
|
+
key: "getModificationdate",
|
|
72
|
+
value: function getModificationdate() {
|
|
73
|
+
return this.modificationdate;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Sets The modification date of this entity
|
|
78
|
+
* @param {Date} modificationdate The modification date of this entity
|
|
79
|
+
*/
|
|
80
|
+
}, {
|
|
81
|
+
key: "setModificationdate",
|
|
82
|
+
value: function setModificationdate(modificationdate) {
|
|
83
|
+
this['modificationdate'] = modificationdate;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @return {Object}
|
|
87
|
+
*/
|
|
88
|
+
}, {
|
|
89
|
+
key: "getSkinFields",
|
|
90
|
+
value: function getSkinFields() {
|
|
91
|
+
return this.skinFields;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* @param {Object} skinFields
|
|
96
|
+
*/
|
|
97
|
+
}, {
|
|
98
|
+
key: "setSkinFields",
|
|
99
|
+
value: function setSkinFields(skinFields) {
|
|
100
|
+
this['skinFields'] = skinFields;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @return {Boolean}
|
|
104
|
+
*/
|
|
105
|
+
}, {
|
|
106
|
+
key: "getIsParentChildRelationship",
|
|
107
|
+
value: function getIsParentChildRelationship() {
|
|
108
|
+
return this.isParentChildRelationship;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* @param {Boolean} isParentChildRelationship
|
|
113
|
+
*/
|
|
114
|
+
}, {
|
|
115
|
+
key: "setIsParentChildRelationship",
|
|
116
|
+
value: function setIsParentChildRelationship(isParentChildRelationship) {
|
|
117
|
+
this['isParentChildRelationship'] = isParentChildRelationship;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* @return {Boolean}
|
|
121
|
+
*/
|
|
122
|
+
}, {
|
|
123
|
+
key: "getIsReverseParentChildRelationship",
|
|
124
|
+
value: function getIsReverseParentChildRelationship() {
|
|
125
|
+
return this.isReverseParentChildRelationship;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* @param {Boolean} isReverseParentChildRelationship
|
|
130
|
+
*/
|
|
131
|
+
}, {
|
|
132
|
+
key: "setIsReverseParentChildRelationship",
|
|
133
|
+
value: function setIsReverseParentChildRelationship(isReverseParentChildRelationship) {
|
|
134
|
+
this['isReverseParentChildRelationship'] = isReverseParentChildRelationship;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Returns If this RelationshipType is a container or Parent Child relationship (The start object is a child of the end object) Permissions granted on start nodes (child) in container relationships are cascaded down to the end objects (parent) Furthermore if a parent object is added to a graph, this relationship along with the child object is also added to that graph
|
|
138
|
+
* @return {Boolean}
|
|
139
|
+
*/
|
|
140
|
+
}, {
|
|
141
|
+
key: "getIsparentchild",
|
|
142
|
+
value: function getIsparentchild() {
|
|
143
|
+
return this.isparentchild;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Sets If this RelationshipType is a container or Parent Child relationship (The start object is a child of the end object) Permissions granted on start nodes (child) in container relationships are cascaded down to the end objects (parent) Furthermore if a parent object is added to a graph, this relationship along with the child object is also added to that graph
|
|
148
|
+
* @param {Boolean} isparentchild If this RelationshipType is a container or Parent Child relationship (The start object is a child of the end object) Permissions granted on start nodes (child) in container relationships are cascaded down to the end objects (parent) Furthermore if a parent object is added to a graph, this relationship along with the child object is also added to that graph
|
|
149
|
+
*/
|
|
150
|
+
}, {
|
|
151
|
+
key: "setIsparentchild",
|
|
152
|
+
value: function setIsparentchild(isparentchild) {
|
|
153
|
+
this['isparentchild'] = isparentchild;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Returns If this RelationshipType is a reverse container or Parent Child relationship (The end object is a child of the start object) Permissions are not cascaded in reverse parent child relationships, but if a parent ogject is added to a graph, this relationship along with the child object is also added to that graph
|
|
157
|
+
* @return {Boolean}
|
|
158
|
+
*/
|
|
159
|
+
}, {
|
|
160
|
+
key: "getIsreverseparentchild",
|
|
161
|
+
value: function getIsreverseparentchild() {
|
|
162
|
+
return this.isreverseparentchild;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Sets If this RelationshipType is a reverse container or Parent Child relationship (The end object is a child of the start object) Permissions are not cascaded in reverse parent child relationships, but if a parent ogject is added to a graph, this relationship along with the child object is also added to that graph
|
|
167
|
+
* @param {Boolean} isreverseparentchild If this RelationshipType is a reverse container or Parent Child relationship (The end object is a child of the start object) Permissions are not cascaded in reverse parent child relationships, but if a parent ogject is added to a graph, this relationship along with the child object is also added to that graph
|
|
168
|
+
*/
|
|
169
|
+
}, {
|
|
170
|
+
key: "setIsreverseparentchild",
|
|
171
|
+
value: function setIsreverseparentchild(isreverseparentchild) {
|
|
172
|
+
this['isreverseparentchild'] = isreverseparentchild;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @return {String}
|
|
176
|
+
*/
|
|
177
|
+
}, {
|
|
178
|
+
key: "getName",
|
|
179
|
+
value: function getName() {
|
|
180
|
+
return this.name;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @param {String} name
|
|
185
|
+
*/
|
|
186
|
+
}, {
|
|
187
|
+
key: "setName",
|
|
188
|
+
value: function setName(name) {
|
|
189
|
+
this['name'] = name;
|
|
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/GraphRelationshipType.CardinalityEnum}
|
|
210
|
+
*/
|
|
211
|
+
}, {
|
|
212
|
+
key: "getCardinality",
|
|
213
|
+
value: function getCardinality() {
|
|
214
|
+
return this.cardinality;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* @param {module:model/GraphRelationshipType.CardinalityEnum} cardinality
|
|
219
|
+
*/
|
|
220
|
+
}, {
|
|
221
|
+
key: "setCardinality",
|
|
222
|
+
value: function setCardinality(cardinality) {
|
|
223
|
+
this['cardinality'] = cardinality;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* @return {module:model/Template}
|
|
227
|
+
*/
|
|
228
|
+
}, {
|
|
229
|
+
key: "getTemplate",
|
|
230
|
+
value: function getTemplate() {
|
|
231
|
+
return this.template;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* @param {module:model/Template} template
|
|
236
|
+
*/
|
|
237
|
+
}, {
|
|
238
|
+
key: "setTemplate",
|
|
239
|
+
value: function setTemplate(template) {
|
|
240
|
+
this['template'] = template;
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* @return {module:model/GraphRelationshipType.CardinatlityEnum}
|
|
244
|
+
*/
|
|
245
|
+
}, {
|
|
246
|
+
key: "getCardinatlity",
|
|
247
|
+
value: function getCardinatlity() {
|
|
248
|
+
return this.cardinatlity;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @param {module:model/GraphRelationshipType.CardinatlityEnum} cardinatlity
|
|
253
|
+
*/
|
|
254
|
+
}, {
|
|
255
|
+
key: "setCardinatlity",
|
|
256
|
+
value: function setCardinatlity(cardinatlity) {
|
|
257
|
+
this['cardinatlity'] = cardinatlity;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* Returns The Friendly Name (user facing name) of this RelationshipType
|
|
261
|
+
* @return {String}
|
|
262
|
+
*/
|
|
263
|
+
}, {
|
|
264
|
+
key: "getFriendlyname",
|
|
265
|
+
value: function getFriendlyname() {
|
|
266
|
+
return this.friendlyname;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Sets The Friendly Name (user facing name) of this RelationshipType
|
|
271
|
+
* @param {String} friendlyname The Friendly Name (user facing name) of this RelationshipType
|
|
272
|
+
*/
|
|
273
|
+
}, {
|
|
274
|
+
key: "setFriendlyname",
|
|
275
|
+
value: function setFriendlyname(friendlyname) {
|
|
276
|
+
this['friendlyname'] = friendlyname;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* Returns the name of this action/relationship when the user is prompted to perform or create it
|
|
280
|
+
* @return {String}
|
|
281
|
+
*/
|
|
282
|
+
}, {
|
|
283
|
+
key: "getPerformname",
|
|
284
|
+
value: function getPerformname() {
|
|
285
|
+
return this.performname;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Sets the name of this action/relationship when the user is prompted to perform or create it
|
|
290
|
+
* @param {String} performname the name of this action/relationship when the user is prompted to perform or create it
|
|
291
|
+
*/
|
|
292
|
+
}, {
|
|
293
|
+
key: "setPerformname",
|
|
294
|
+
value: function setPerformname(performname) {
|
|
295
|
+
this['performname'] = performname;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Returns the Friendly name from the perspective of the end node
|
|
299
|
+
* @return {String}
|
|
300
|
+
*/
|
|
301
|
+
}, {
|
|
302
|
+
key: "getReversefriendlyname",
|
|
303
|
+
value: function getReversefriendlyname() {
|
|
304
|
+
return this.reversefriendlyname;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* Sets the Friendly name from the perspective of the end node
|
|
309
|
+
* @param {String} reversefriendlyname the Friendly name from the perspective of the end node
|
|
310
|
+
*/
|
|
311
|
+
}, {
|
|
312
|
+
key: "setReversefriendlyname",
|
|
313
|
+
value: function setReversefriendlyname(reversefriendlyname) {
|
|
314
|
+
this['reversefriendlyname'] = reversefriendlyname;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* Returns The unique key of this entity
|
|
318
|
+
* @return {String}
|
|
319
|
+
*/
|
|
320
|
+
}, {
|
|
321
|
+
key: "getKey",
|
|
322
|
+
value: function getKey() {
|
|
323
|
+
return this.key;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Sets The unique key of this entity
|
|
328
|
+
* @param {String} key The unique key of this entity
|
|
329
|
+
*/
|
|
330
|
+
}, {
|
|
331
|
+
key: "setKey",
|
|
332
|
+
value: function setKey(key) {
|
|
333
|
+
this['key'] = key;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* @return {Object}
|
|
337
|
+
*/
|
|
338
|
+
}, {
|
|
339
|
+
key: "getMethods",
|
|
340
|
+
value: function getMethods() {
|
|
341
|
+
return this.methods;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* @param {Object} methods
|
|
346
|
+
*/
|
|
347
|
+
}, {
|
|
348
|
+
key: "setMethods",
|
|
349
|
+
value: function setMethods(methods) {
|
|
350
|
+
this['methods'] = methods;
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* @return {Object}
|
|
354
|
+
*/
|
|
355
|
+
}, {
|
|
356
|
+
key: "getData",
|
|
357
|
+
value: function getData() {
|
|
358
|
+
return this.data;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* @param {Object} data
|
|
363
|
+
*/
|
|
364
|
+
}, {
|
|
365
|
+
key: "setData",
|
|
366
|
+
value: function setData(data) {
|
|
367
|
+
this['data'] = data;
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* @return {Number}
|
|
371
|
+
*/
|
|
372
|
+
}, {
|
|
373
|
+
key: "getId",
|
|
374
|
+
value: function getId() {
|
|
375
|
+
return this.id;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* @param {Number} id
|
|
380
|
+
*/
|
|
381
|
+
}, {
|
|
382
|
+
key: "setId",
|
|
383
|
+
value: function setId(id) {
|
|
384
|
+
this['id'] = id;
|
|
385
|
+
}
|
|
386
|
+
}], [{
|
|
387
|
+
key: "initialize",
|
|
388
|
+
value: function initialize(obj) {}
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Constructs a <code>GraphRelationshipType</code> from a plain JavaScript object, optionally creating a new instance.
|
|
392
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
393
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
394
|
+
* @param {module:model/GraphRelationshipType} obj Optional instance to populate.
|
|
395
|
+
* @return {module:model/GraphRelationshipType} The populated <code>GraphRelationshipType</code> instance.
|
|
396
|
+
*/
|
|
397
|
+
}, {
|
|
398
|
+
key: "constructFromObject",
|
|
399
|
+
value: function constructFromObject(data, obj) {
|
|
400
|
+
if (data) {
|
|
401
|
+
obj = obj || new GraphRelationshipType();
|
|
402
|
+
if (data.hasOwnProperty('creator')) {
|
|
403
|
+
obj['creator'] = _Member["default"].constructFromObject(data['creator']);
|
|
404
|
+
}
|
|
405
|
+
if (data.hasOwnProperty('modificationdate')) {
|
|
406
|
+
obj['modificationdate'] = _ApiClient["default"].convertToType(data['modificationdate'], 'Date');
|
|
407
|
+
}
|
|
408
|
+
if (data.hasOwnProperty('skinFields')) {
|
|
409
|
+
obj['skinFields'] = _ApiClient["default"].convertToType(data['skinFields'], Object);
|
|
410
|
+
}
|
|
411
|
+
if (data.hasOwnProperty('isParentChildRelationship')) {
|
|
412
|
+
obj['isParentChildRelationship'] = _ApiClient["default"].convertToType(data['isParentChildRelationship'], 'Boolean');
|
|
413
|
+
}
|
|
414
|
+
if (data.hasOwnProperty('isReverseParentChildRelationship')) {
|
|
415
|
+
obj['isReverseParentChildRelationship'] = _ApiClient["default"].convertToType(data['isReverseParentChildRelationship'], 'Boolean');
|
|
416
|
+
}
|
|
417
|
+
if (data.hasOwnProperty('isparentchild')) {
|
|
418
|
+
obj['isparentchild'] = _ApiClient["default"].convertToType(data['isparentchild'], 'Boolean');
|
|
419
|
+
}
|
|
420
|
+
if (data.hasOwnProperty('isreverseparentchild')) {
|
|
421
|
+
obj['isreverseparentchild'] = _ApiClient["default"].convertToType(data['isreverseparentchild'], 'Boolean');
|
|
422
|
+
}
|
|
423
|
+
if (data.hasOwnProperty('name')) {
|
|
424
|
+
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
425
|
+
}
|
|
426
|
+
if (data.hasOwnProperty('description')) {
|
|
427
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
428
|
+
}
|
|
429
|
+
if (data.hasOwnProperty('cardinality')) {
|
|
430
|
+
obj['cardinality'] = _ApiClient["default"].convertToType(data['cardinality'], 'String');
|
|
431
|
+
}
|
|
432
|
+
if (data.hasOwnProperty('template')) {
|
|
433
|
+
obj['template'] = _Template["default"].constructFromObject(data['template']);
|
|
434
|
+
}
|
|
435
|
+
if (data.hasOwnProperty('cardinatlity')) {
|
|
436
|
+
obj['cardinatlity'] = _ApiClient["default"].convertToType(data['cardinatlity'], 'String');
|
|
437
|
+
}
|
|
438
|
+
if (data.hasOwnProperty('friendlyname')) {
|
|
439
|
+
obj['friendlyname'] = _ApiClient["default"].convertToType(data['friendlyname'], 'String');
|
|
440
|
+
}
|
|
441
|
+
if (data.hasOwnProperty('performname')) {
|
|
442
|
+
obj['performname'] = _ApiClient["default"].convertToType(data['performname'], 'String');
|
|
443
|
+
}
|
|
444
|
+
if (data.hasOwnProperty('reversefriendlyname')) {
|
|
445
|
+
obj['reversefriendlyname'] = _ApiClient["default"].convertToType(data['reversefriendlyname'], 'String');
|
|
446
|
+
}
|
|
447
|
+
if (data.hasOwnProperty('key')) {
|
|
448
|
+
obj['key'] = _ApiClient["default"].convertToType(data['key'], 'String');
|
|
449
|
+
}
|
|
450
|
+
if (data.hasOwnProperty('methods')) {
|
|
451
|
+
obj['methods'] = _ApiClient["default"].convertToType(data['methods'], Object);
|
|
452
|
+
}
|
|
453
|
+
if (data.hasOwnProperty('data')) {
|
|
454
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
455
|
+
}
|
|
456
|
+
if (data.hasOwnProperty('id')) {
|
|
457
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
return obj;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Validates the JSON data with respect to <code>GraphRelationshipType</code>.
|
|
465
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
466
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>GraphRelationshipType</code>.
|
|
467
|
+
*/
|
|
468
|
+
}, {
|
|
469
|
+
key: "validateJSON",
|
|
470
|
+
value: function validateJSON(data) {
|
|
471
|
+
// validate the optional field `creator`
|
|
472
|
+
if (data['creator']) {
|
|
473
|
+
// data not null
|
|
474
|
+
_Member["default"].validateJSON(data['creator']);
|
|
475
|
+
}
|
|
476
|
+
// ensure the json data is a string
|
|
477
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
478
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
479
|
+
}
|
|
480
|
+
// ensure the json data is a string
|
|
481
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
482
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
483
|
+
}
|
|
484
|
+
// ensure the json data is a string
|
|
485
|
+
if (data['cardinality'] && !(typeof data['cardinality'] === 'string' || data['cardinality'] instanceof String)) {
|
|
486
|
+
throw new Error("Expected the field `cardinality` to be a primitive type in the JSON string but got " + data['cardinality']);
|
|
487
|
+
}
|
|
488
|
+
// validate the optional field `template`
|
|
489
|
+
if (data['template']) {
|
|
490
|
+
// data not null
|
|
491
|
+
_Template["default"].validateJSON(data['template']);
|
|
492
|
+
}
|
|
493
|
+
// ensure the json data is a string
|
|
494
|
+
if (data['cardinatlity'] && !(typeof data['cardinatlity'] === 'string' || data['cardinatlity'] instanceof String)) {
|
|
495
|
+
throw new Error("Expected the field `cardinatlity` to be a primitive type in the JSON string but got " + data['cardinatlity']);
|
|
496
|
+
}
|
|
497
|
+
// ensure the json data is a string
|
|
498
|
+
if (data['friendlyname'] && !(typeof data['friendlyname'] === 'string' || data['friendlyname'] instanceof String)) {
|
|
499
|
+
throw new Error("Expected the field `friendlyname` to be a primitive type in the JSON string but got " + data['friendlyname']);
|
|
500
|
+
}
|
|
501
|
+
// ensure the json data is a string
|
|
502
|
+
if (data['performname'] && !(typeof data['performname'] === 'string' || data['performname'] instanceof String)) {
|
|
503
|
+
throw new Error("Expected the field `performname` to be a primitive type in the JSON string but got " + data['performname']);
|
|
504
|
+
}
|
|
505
|
+
// ensure the json data is a string
|
|
506
|
+
if (data['reversefriendlyname'] && !(typeof data['reversefriendlyname'] === 'string' || data['reversefriendlyname'] instanceof String)) {
|
|
507
|
+
throw new Error("Expected the field `reversefriendlyname` to be a primitive type in the JSON string but got " + data['reversefriendlyname']);
|
|
508
|
+
}
|
|
509
|
+
// ensure the json data is a string
|
|
510
|
+
if (data['key'] && !(typeof data['key'] === 'string' || data['key'] instanceof String)) {
|
|
511
|
+
throw new Error("Expected the field `key` to be a primitive type in the JSON string but got " + data['key']);
|
|
512
|
+
}
|
|
513
|
+
return true;
|
|
514
|
+
}
|
|
515
|
+
}]);
|
|
516
|
+
return GraphRelationshipType;
|
|
517
|
+
}();
|
|
518
|
+
/**
|
|
519
|
+
* @member {module:model/Member} creator
|
|
520
|
+
*/
|
|
521
|
+
GraphRelationshipType.prototype['creator'] = undefined;
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* The modification date of this entity
|
|
525
|
+
* @member {Date} modificationdate
|
|
526
|
+
*/
|
|
527
|
+
GraphRelationshipType.prototype['modificationdate'] = undefined;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* @member {Object} skinFields
|
|
531
|
+
*/
|
|
532
|
+
GraphRelationshipType.prototype['skinFields'] = undefined;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* @member {Boolean} isParentChildRelationship
|
|
536
|
+
*/
|
|
537
|
+
GraphRelationshipType.prototype['isParentChildRelationship'] = undefined;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* @member {Boolean} isReverseParentChildRelationship
|
|
541
|
+
*/
|
|
542
|
+
GraphRelationshipType.prototype['isReverseParentChildRelationship'] = undefined;
|
|
543
|
+
|
|
544
|
+
/**
|
|
545
|
+
* If this RelationshipType is a container or Parent Child relationship (The start object is a child of the end object) Permissions granted on start nodes (child) in container relationships are cascaded down to the end objects (parent) Furthermore if a parent object is added to a graph, this relationship along with the child object is also added to that graph
|
|
546
|
+
* @member {Boolean} isparentchild
|
|
547
|
+
*/
|
|
548
|
+
GraphRelationshipType.prototype['isparentchild'] = undefined;
|
|
549
|
+
|
|
550
|
+
/**
|
|
551
|
+
* If this RelationshipType is a reverse container or Parent Child relationship (The end object is a child of the start object) Permissions are not cascaded in reverse parent child relationships, but if a parent ogject is added to a graph, this relationship along with the child object is also added to that graph
|
|
552
|
+
* @member {Boolean} isreverseparentchild
|
|
553
|
+
*/
|
|
554
|
+
GraphRelationshipType.prototype['isreverseparentchild'] = undefined;
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* @member {String} name
|
|
558
|
+
*/
|
|
559
|
+
GraphRelationshipType.prototype['name'] = undefined;
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* @member {String} description
|
|
563
|
+
*/
|
|
564
|
+
GraphRelationshipType.prototype['description'] = undefined;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* @member {module:model/GraphRelationshipType.CardinalityEnum} cardinality
|
|
568
|
+
*/
|
|
569
|
+
GraphRelationshipType.prototype['cardinality'] = undefined;
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* @member {module:model/Template} template
|
|
573
|
+
*/
|
|
574
|
+
GraphRelationshipType.prototype['template'] = undefined;
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* @member {module:model/GraphRelationshipType.CardinatlityEnum} cardinatlity
|
|
578
|
+
*/
|
|
579
|
+
GraphRelationshipType.prototype['cardinatlity'] = undefined;
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* The Friendly Name (user facing name) of this RelationshipType
|
|
583
|
+
* @member {String} friendlyname
|
|
584
|
+
*/
|
|
585
|
+
GraphRelationshipType.prototype['friendlyname'] = undefined;
|
|
586
|
+
|
|
587
|
+
/**
|
|
588
|
+
* the name of this action/relationship when the user is prompted to perform or create it
|
|
589
|
+
* @member {String} performname
|
|
590
|
+
*/
|
|
591
|
+
GraphRelationshipType.prototype['performname'] = undefined;
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* the Friendly name from the perspective of the end node
|
|
595
|
+
* @member {String} reversefriendlyname
|
|
596
|
+
*/
|
|
597
|
+
GraphRelationshipType.prototype['reversefriendlyname'] = undefined;
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* The unique key of this entity
|
|
601
|
+
* @member {String} key
|
|
602
|
+
*/
|
|
603
|
+
GraphRelationshipType.prototype['key'] = undefined;
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* @member {Object} methods
|
|
607
|
+
*/
|
|
608
|
+
GraphRelationshipType.prototype['methods'] = undefined;
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* @member {Object} data
|
|
612
|
+
*/
|
|
613
|
+
GraphRelationshipType.prototype['data'] = undefined;
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* @member {Number} id
|
|
617
|
+
*/
|
|
618
|
+
GraphRelationshipType.prototype['id'] = undefined;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Allowed values for the <code>cardinality</code> property.
|
|
622
|
+
* @enum {String}
|
|
623
|
+
* @readonly
|
|
624
|
+
*/
|
|
625
|
+
GraphRelationshipType['CardinalityEnum'] = {
|
|
626
|
+
/**
|
|
627
|
+
* value: "MANY_TO_MANY"
|
|
628
|
+
* @const
|
|
629
|
+
*/
|
|
630
|
+
"MANY_TO_MANY": "MANY_TO_MANY",
|
|
631
|
+
/**
|
|
632
|
+
* value: "ONE_TO_MANY"
|
|
633
|
+
* @const
|
|
634
|
+
*/
|
|
635
|
+
"ONE_TO_MANY": "ONE_TO_MANY",
|
|
636
|
+
/**
|
|
637
|
+
* value: "MANY_TO_ONE"
|
|
638
|
+
* @const
|
|
639
|
+
*/
|
|
640
|
+
"MANY_TO_ONE": "MANY_TO_ONE",
|
|
641
|
+
/**
|
|
642
|
+
* value: "ONE_TO_ONE"
|
|
643
|
+
* @const
|
|
644
|
+
*/
|
|
645
|
+
"ONE_TO_ONE": "ONE_TO_ONE"
|
|
646
|
+
};
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* Allowed values for the <code>cardinatlity</code> property.
|
|
650
|
+
* @enum {String}
|
|
651
|
+
* @readonly
|
|
652
|
+
*/
|
|
653
|
+
GraphRelationshipType['CardinatlityEnum'] = {
|
|
654
|
+
/**
|
|
655
|
+
* value: "MANY_TO_MANY"
|
|
656
|
+
* @const
|
|
657
|
+
*/
|
|
658
|
+
"MANY_TO_MANY": "MANY_TO_MANY",
|
|
659
|
+
/**
|
|
660
|
+
* value: "ONE_TO_MANY"
|
|
661
|
+
* @const
|
|
662
|
+
*/
|
|
663
|
+
"ONE_TO_MANY": "ONE_TO_MANY",
|
|
664
|
+
/**
|
|
665
|
+
* value: "MANY_TO_ONE"
|
|
666
|
+
* @const
|
|
667
|
+
*/
|
|
668
|
+
"MANY_TO_ONE": "MANY_TO_ONE",
|
|
669
|
+
/**
|
|
670
|
+
* value: "ONE_TO_ONE"
|
|
671
|
+
* @const
|
|
672
|
+
*/
|
|
673
|
+
"ONE_TO_ONE": "ONE_TO_ONE"
|
|
674
|
+
};
|
|
675
|
+
var _default = exports["default"] = GraphRelationshipType;
|