@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,520 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
9
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11
|
+
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); } }
|
|
12
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
14
|
+
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); } /**
|
|
15
|
+
* gobodo-api
|
|
16
|
+
* REST Interface for Gobodo API
|
|
17
|
+
*
|
|
18
|
+
* The version of the OpenAPI document: 0.1.34
|
|
19
|
+
* Contact: info@gobodo.io
|
|
20
|
+
*
|
|
21
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
22
|
+
* https://openapi-generator.tech
|
|
23
|
+
* Do not edit the class manually.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
/**
|
|
27
|
+
* The PrivateMessageConversation model module.
|
|
28
|
+
* @module model/PrivateMessageConversation
|
|
29
|
+
* @version 0.1.34
|
|
30
|
+
*/
|
|
31
|
+
var PrivateMessageConversation = /*#__PURE__*/function () {
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a new <code>PrivateMessageConversation</code>.
|
|
34
|
+
* @alias module:model/PrivateMessageConversation
|
|
35
|
+
*/
|
|
36
|
+
function PrivateMessageConversation() {
|
|
37
|
+
_classCallCheck(this, PrivateMessageConversation);
|
|
38
|
+
PrivateMessageConversation.initialize(this);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Initializes the fields of this object.
|
|
43
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
44
|
+
* Only for internal use.
|
|
45
|
+
*/
|
|
46
|
+
_createClass(PrivateMessageConversation, [{
|
|
47
|
+
key: "getSubject",
|
|
48
|
+
value:
|
|
49
|
+
/**
|
|
50
|
+
* Returns Name or subject of this conversation
|
|
51
|
+
* @return {String}
|
|
52
|
+
*/
|
|
53
|
+
function getSubject() {
|
|
54
|
+
return this.subject;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Sets Name or subject of this conversation
|
|
59
|
+
* @param {String} subject Name or subject of this conversation
|
|
60
|
+
*/
|
|
61
|
+
}, {
|
|
62
|
+
key: "setSubject",
|
|
63
|
+
value: function setSubject(subject) {
|
|
64
|
+
this['subject'] = subject;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Returns Status of this conversation
|
|
68
|
+
* @return {module:model/PrivateMessageConversation.StatusEnum}
|
|
69
|
+
*/
|
|
70
|
+
}, {
|
|
71
|
+
key: "getStatus",
|
|
72
|
+
value: function getStatus() {
|
|
73
|
+
return this.status;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Sets Status of this conversation
|
|
78
|
+
* @param {module:model/PrivateMessageConversation.StatusEnum} status Status of this conversation
|
|
79
|
+
*/
|
|
80
|
+
}, {
|
|
81
|
+
key: "setStatus",
|
|
82
|
+
value: function setStatus(status) {
|
|
83
|
+
this['status'] = status;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Returns The messages in this conversation
|
|
87
|
+
* @return {String}
|
|
88
|
+
*/
|
|
89
|
+
}, {
|
|
90
|
+
key: "getMessages",
|
|
91
|
+
value: function getMessages() {
|
|
92
|
+
return this.messages;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Sets The messages in this conversation
|
|
97
|
+
* @param {String} messages The messages in this conversation
|
|
98
|
+
*/
|
|
99
|
+
}, {
|
|
100
|
+
key: "setMessages",
|
|
101
|
+
value: function setMessages(messages) {
|
|
102
|
+
this['messages'] = messages;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Returns The child conversations
|
|
106
|
+
* @return {String}
|
|
107
|
+
*/
|
|
108
|
+
}, {
|
|
109
|
+
key: "getChildconversations",
|
|
110
|
+
value: function getChildconversations() {
|
|
111
|
+
return this.childconversations;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Sets The child conversations
|
|
116
|
+
* @param {String} childconversations The child conversations
|
|
117
|
+
*/
|
|
118
|
+
}, {
|
|
119
|
+
key: "setChildconversations",
|
|
120
|
+
value: function setChildconversations(childconversations) {
|
|
121
|
+
this['childconversations'] = childconversations;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* @return {Object}
|
|
125
|
+
*/
|
|
126
|
+
}, {
|
|
127
|
+
key: "getGroupedMessages",
|
|
128
|
+
value: function getGroupedMessages() {
|
|
129
|
+
return this.groupedMessages;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @param {Object} groupedMessages
|
|
134
|
+
*/
|
|
135
|
+
}, {
|
|
136
|
+
key: "setGroupedMessages",
|
|
137
|
+
value: function setGroupedMessages(groupedMessages) {
|
|
138
|
+
this['groupedMessages'] = groupedMessages;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Returns The creator of this conversation
|
|
142
|
+
* @return {String}
|
|
143
|
+
*/
|
|
144
|
+
}, {
|
|
145
|
+
key: "getCreator",
|
|
146
|
+
value: function getCreator() {
|
|
147
|
+
return this.creator;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Sets The creator of this conversation
|
|
152
|
+
* @param {String} creator The creator of this conversation
|
|
153
|
+
*/
|
|
154
|
+
}, {
|
|
155
|
+
key: "setCreator",
|
|
156
|
+
value: function setCreator(creator) {
|
|
157
|
+
this['creator'] = creator;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* Returns Number of participants in this conversation
|
|
161
|
+
* @return {Number}
|
|
162
|
+
*/
|
|
163
|
+
}, {
|
|
164
|
+
key: "getParticipantcount",
|
|
165
|
+
value: function getParticipantcount() {
|
|
166
|
+
return this.participantcount;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Sets Number of participants in this conversation
|
|
171
|
+
* @param {Number} participantcount Number of participants in this conversation
|
|
172
|
+
*/
|
|
173
|
+
}, {
|
|
174
|
+
key: "setParticipantcount",
|
|
175
|
+
value: function setParticipantcount(participantcount) {
|
|
176
|
+
this['participantcount'] = participantcount;
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Returns The last participant in this conversation other than the logged in user
|
|
180
|
+
* @return {String}
|
|
181
|
+
*/
|
|
182
|
+
}, {
|
|
183
|
+
key: "getLastparticipantnotself",
|
|
184
|
+
value: function getLastparticipantnotself() {
|
|
185
|
+
return this.lastparticipantnotself;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Sets The last participant in this conversation other than the logged in user
|
|
190
|
+
* @param {String} lastparticipantnotself The last participant in this conversation other than the logged in user
|
|
191
|
+
*/
|
|
192
|
+
}, {
|
|
193
|
+
key: "setLastparticipantnotself",
|
|
194
|
+
value: function setLastparticipantnotself(lastparticipantnotself) {
|
|
195
|
+
this['lastparticipantnotself'] = lastparticipantnotself;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Returns The last message in this conversation
|
|
199
|
+
* @return {String}
|
|
200
|
+
*/
|
|
201
|
+
}, {
|
|
202
|
+
key: "getLastmessage",
|
|
203
|
+
value: function getLastmessage() {
|
|
204
|
+
return this.lastmessage;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Sets The last message in this conversation
|
|
209
|
+
* @param {String} lastmessage The last message in this conversation
|
|
210
|
+
*/
|
|
211
|
+
}, {
|
|
212
|
+
key: "setLastmessage",
|
|
213
|
+
value: function setLastmessage(lastmessage) {
|
|
214
|
+
this['lastmessage'] = lastmessage;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Returns The parent conversation
|
|
218
|
+
* @return {String}
|
|
219
|
+
*/
|
|
220
|
+
}, {
|
|
221
|
+
key: "getParent",
|
|
222
|
+
value: function getParent() {
|
|
223
|
+
return this.parent;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Sets The parent conversation
|
|
228
|
+
* @param {String} parent The parent conversation
|
|
229
|
+
*/
|
|
230
|
+
}, {
|
|
231
|
+
key: "setParent",
|
|
232
|
+
value: function setParent(parent) {
|
|
233
|
+
this['parent'] = parent;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* Returns The participants in this conversation
|
|
237
|
+
* @return {String}
|
|
238
|
+
*/
|
|
239
|
+
}, {
|
|
240
|
+
key: "getParticipants",
|
|
241
|
+
value: function getParticipants() {
|
|
242
|
+
return this.participants;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Sets The participants in this conversation
|
|
247
|
+
* @param {String} participants The participants in this conversation
|
|
248
|
+
*/
|
|
249
|
+
}, {
|
|
250
|
+
key: "setParticipants",
|
|
251
|
+
value: function setParticipants(participants) {
|
|
252
|
+
this['participants'] = participants;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* Returns The first message in this conversation
|
|
256
|
+
* @return {String}
|
|
257
|
+
*/
|
|
258
|
+
}, {
|
|
259
|
+
key: "getFirstmessage",
|
|
260
|
+
value: function getFirstmessage() {
|
|
261
|
+
return this.firstmessage;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Sets The first message in this conversation
|
|
266
|
+
* @param {String} firstmessage The first message in this conversation
|
|
267
|
+
*/
|
|
268
|
+
}, {
|
|
269
|
+
key: "setFirstmessage",
|
|
270
|
+
value: function setFirstmessage(firstmessage) {
|
|
271
|
+
this['firstmessage'] = firstmessage;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* @return {Object}
|
|
275
|
+
*/
|
|
276
|
+
}, {
|
|
277
|
+
key: "getData",
|
|
278
|
+
value: function getData() {
|
|
279
|
+
return this.data;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* @param {Object} data
|
|
284
|
+
*/
|
|
285
|
+
}, {
|
|
286
|
+
key: "setData",
|
|
287
|
+
value: function setData(data) {
|
|
288
|
+
this['data'] = data;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* @return {Number}
|
|
292
|
+
*/
|
|
293
|
+
}, {
|
|
294
|
+
key: "getId",
|
|
295
|
+
value: function getId() {
|
|
296
|
+
return this.id;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/**
|
|
300
|
+
* @param {Number} id
|
|
301
|
+
*/
|
|
302
|
+
}, {
|
|
303
|
+
key: "setId",
|
|
304
|
+
value: function setId(id) {
|
|
305
|
+
this['id'] = id;
|
|
306
|
+
}
|
|
307
|
+
}], [{
|
|
308
|
+
key: "initialize",
|
|
309
|
+
value: function initialize(obj) {}
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Constructs a <code>PrivateMessageConversation</code> from a plain JavaScript object, optionally creating a new instance.
|
|
313
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
314
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
315
|
+
* @param {module:model/PrivateMessageConversation} obj Optional instance to populate.
|
|
316
|
+
* @return {module:model/PrivateMessageConversation} The populated <code>PrivateMessageConversation</code> instance.
|
|
317
|
+
*/
|
|
318
|
+
}, {
|
|
319
|
+
key: "constructFromObject",
|
|
320
|
+
value: function constructFromObject(data, obj) {
|
|
321
|
+
if (data) {
|
|
322
|
+
obj = obj || new PrivateMessageConversation();
|
|
323
|
+
if (data.hasOwnProperty('subject')) {
|
|
324
|
+
obj['subject'] = _ApiClient["default"].convertToType(data['subject'], 'String');
|
|
325
|
+
}
|
|
326
|
+
if (data.hasOwnProperty('status')) {
|
|
327
|
+
obj['status'] = _ApiClient["default"].convertToType(data['status'], 'String');
|
|
328
|
+
}
|
|
329
|
+
if (data.hasOwnProperty('messages')) {
|
|
330
|
+
obj['messages'] = _ApiClient["default"].convertToType(data['messages'], 'String');
|
|
331
|
+
}
|
|
332
|
+
if (data.hasOwnProperty('childconversations')) {
|
|
333
|
+
obj['childconversations'] = _ApiClient["default"].convertToType(data['childconversations'], 'String');
|
|
334
|
+
}
|
|
335
|
+
if (data.hasOwnProperty('groupedMessages')) {
|
|
336
|
+
obj['groupedMessages'] = _ApiClient["default"].convertToType(data['groupedMessages'], Object);
|
|
337
|
+
}
|
|
338
|
+
if (data.hasOwnProperty('creator')) {
|
|
339
|
+
obj['creator'] = _ApiClient["default"].convertToType(data['creator'], 'String');
|
|
340
|
+
}
|
|
341
|
+
if (data.hasOwnProperty('participantcount')) {
|
|
342
|
+
obj['participantcount'] = _ApiClient["default"].convertToType(data['participantcount'], 'Number');
|
|
343
|
+
}
|
|
344
|
+
if (data.hasOwnProperty('lastparticipantnotself')) {
|
|
345
|
+
obj['lastparticipantnotself'] = _ApiClient["default"].convertToType(data['lastparticipantnotself'], 'String');
|
|
346
|
+
}
|
|
347
|
+
if (data.hasOwnProperty('lastmessage')) {
|
|
348
|
+
obj['lastmessage'] = _ApiClient["default"].convertToType(data['lastmessage'], 'String');
|
|
349
|
+
}
|
|
350
|
+
if (data.hasOwnProperty('parent')) {
|
|
351
|
+
obj['parent'] = _ApiClient["default"].convertToType(data['parent'], 'String');
|
|
352
|
+
}
|
|
353
|
+
if (data.hasOwnProperty('participants')) {
|
|
354
|
+
obj['participants'] = _ApiClient["default"].convertToType(data['participants'], 'String');
|
|
355
|
+
}
|
|
356
|
+
if (data.hasOwnProperty('firstmessage')) {
|
|
357
|
+
obj['firstmessage'] = _ApiClient["default"].convertToType(data['firstmessage'], 'String');
|
|
358
|
+
}
|
|
359
|
+
if (data.hasOwnProperty('data')) {
|
|
360
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
361
|
+
}
|
|
362
|
+
if (data.hasOwnProperty('id')) {
|
|
363
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
return obj;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* Validates the JSON data with respect to <code>PrivateMessageConversation</code>.
|
|
371
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
372
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>PrivateMessageConversation</code>.
|
|
373
|
+
*/
|
|
374
|
+
}, {
|
|
375
|
+
key: "validateJSON",
|
|
376
|
+
value: function validateJSON(data) {
|
|
377
|
+
// ensure the json data is a string
|
|
378
|
+
if (data['subject'] && !(typeof data['subject'] === 'string' || data['subject'] instanceof String)) {
|
|
379
|
+
throw new Error("Expected the field `subject` to be a primitive type in the JSON string but got " + data['subject']);
|
|
380
|
+
}
|
|
381
|
+
// ensure the json data is a string
|
|
382
|
+
if (data['status'] && !(typeof data['status'] === 'string' || data['status'] instanceof String)) {
|
|
383
|
+
throw new Error("Expected the field `status` to be a primitive type in the JSON string but got " + data['status']);
|
|
384
|
+
}
|
|
385
|
+
// ensure the json data is a string
|
|
386
|
+
if (data['messages'] && !(typeof data['messages'] === 'string' || data['messages'] instanceof String)) {
|
|
387
|
+
throw new Error("Expected the field `messages` to be a primitive type in the JSON string but got " + data['messages']);
|
|
388
|
+
}
|
|
389
|
+
// ensure the json data is a string
|
|
390
|
+
if (data['childconversations'] && !(typeof data['childconversations'] === 'string' || data['childconversations'] instanceof String)) {
|
|
391
|
+
throw new Error("Expected the field `childconversations` to be a primitive type in the JSON string but got " + data['childconversations']);
|
|
392
|
+
}
|
|
393
|
+
// ensure the json data is a string
|
|
394
|
+
if (data['creator'] && !(typeof data['creator'] === 'string' || data['creator'] instanceof String)) {
|
|
395
|
+
throw new Error("Expected the field `creator` to be a primitive type in the JSON string but got " + data['creator']);
|
|
396
|
+
}
|
|
397
|
+
// ensure the json data is a string
|
|
398
|
+
if (data['lastparticipantnotself'] && !(typeof data['lastparticipantnotself'] === 'string' || data['lastparticipantnotself'] instanceof String)) {
|
|
399
|
+
throw new Error("Expected the field `lastparticipantnotself` to be a primitive type in the JSON string but got " + data['lastparticipantnotself']);
|
|
400
|
+
}
|
|
401
|
+
// ensure the json data is a string
|
|
402
|
+
if (data['lastmessage'] && !(typeof data['lastmessage'] === 'string' || data['lastmessage'] instanceof String)) {
|
|
403
|
+
throw new Error("Expected the field `lastmessage` to be a primitive type in the JSON string but got " + data['lastmessage']);
|
|
404
|
+
}
|
|
405
|
+
// ensure the json data is a string
|
|
406
|
+
if (data['parent'] && !(typeof data['parent'] === 'string' || data['parent'] instanceof String)) {
|
|
407
|
+
throw new Error("Expected the field `parent` to be a primitive type in the JSON string but got " + data['parent']);
|
|
408
|
+
}
|
|
409
|
+
// ensure the json data is a string
|
|
410
|
+
if (data['participants'] && !(typeof data['participants'] === 'string' || data['participants'] instanceof String)) {
|
|
411
|
+
throw new Error("Expected the field `participants` to be a primitive type in the JSON string but got " + data['participants']);
|
|
412
|
+
}
|
|
413
|
+
// ensure the json data is a string
|
|
414
|
+
if (data['firstmessage'] && !(typeof data['firstmessage'] === 'string' || data['firstmessage'] instanceof String)) {
|
|
415
|
+
throw new Error("Expected the field `firstmessage` to be a primitive type in the JSON string but got " + data['firstmessage']);
|
|
416
|
+
}
|
|
417
|
+
return true;
|
|
418
|
+
}
|
|
419
|
+
}]);
|
|
420
|
+
return PrivateMessageConversation;
|
|
421
|
+
}();
|
|
422
|
+
/**
|
|
423
|
+
* Name or subject of this conversation
|
|
424
|
+
* @member {String} subject
|
|
425
|
+
*/
|
|
426
|
+
PrivateMessageConversation.prototype['subject'] = undefined;
|
|
427
|
+
|
|
428
|
+
/**
|
|
429
|
+
* Status of this conversation
|
|
430
|
+
* @member {module:model/PrivateMessageConversation.StatusEnum} status
|
|
431
|
+
*/
|
|
432
|
+
PrivateMessageConversation.prototype['status'] = undefined;
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* The messages in this conversation
|
|
436
|
+
* @member {String} messages
|
|
437
|
+
*/
|
|
438
|
+
PrivateMessageConversation.prototype['messages'] = undefined;
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* The child conversations
|
|
442
|
+
* @member {String} childconversations
|
|
443
|
+
*/
|
|
444
|
+
PrivateMessageConversation.prototype['childconversations'] = undefined;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* @member {Object} groupedMessages
|
|
448
|
+
*/
|
|
449
|
+
PrivateMessageConversation.prototype['groupedMessages'] = undefined;
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* The creator of this conversation
|
|
453
|
+
* @member {String} creator
|
|
454
|
+
*/
|
|
455
|
+
PrivateMessageConversation.prototype['creator'] = undefined;
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* Number of participants in this conversation
|
|
459
|
+
* @member {Number} participantcount
|
|
460
|
+
*/
|
|
461
|
+
PrivateMessageConversation.prototype['participantcount'] = undefined;
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* The last participant in this conversation other than the logged in user
|
|
465
|
+
* @member {String} lastparticipantnotself
|
|
466
|
+
*/
|
|
467
|
+
PrivateMessageConversation.prototype['lastparticipantnotself'] = undefined;
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* The last message in this conversation
|
|
471
|
+
* @member {String} lastmessage
|
|
472
|
+
*/
|
|
473
|
+
PrivateMessageConversation.prototype['lastmessage'] = undefined;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* The parent conversation
|
|
477
|
+
* @member {String} parent
|
|
478
|
+
*/
|
|
479
|
+
PrivateMessageConversation.prototype['parent'] = undefined;
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* The participants in this conversation
|
|
483
|
+
* @member {String} participants
|
|
484
|
+
*/
|
|
485
|
+
PrivateMessageConversation.prototype['participants'] = undefined;
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* The first message in this conversation
|
|
489
|
+
* @member {String} firstmessage
|
|
490
|
+
*/
|
|
491
|
+
PrivateMessageConversation.prototype['firstmessage'] = undefined;
|
|
492
|
+
|
|
493
|
+
/**
|
|
494
|
+
* @member {Object} data
|
|
495
|
+
*/
|
|
496
|
+
PrivateMessageConversation.prototype['data'] = undefined;
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* @member {Number} id
|
|
500
|
+
*/
|
|
501
|
+
PrivateMessageConversation.prototype['id'] = undefined;
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* Allowed values for the <code>status</code> property.
|
|
505
|
+
* @enum {String}
|
|
506
|
+
* @readonly
|
|
507
|
+
*/
|
|
508
|
+
PrivateMessageConversation['StatusEnum'] = {
|
|
509
|
+
/**
|
|
510
|
+
* value: "DRAFT"
|
|
511
|
+
* @const
|
|
512
|
+
*/
|
|
513
|
+
"DRAFT": "DRAFT",
|
|
514
|
+
/**
|
|
515
|
+
* value: "ACTIVE"
|
|
516
|
+
* @const
|
|
517
|
+
*/
|
|
518
|
+
"ACTIVE": "ACTIVE"
|
|
519
|
+
};
|
|
520
|
+
var _default = exports["default"] = PrivateMessageConversation;
|