@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,591 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _Image = _interopRequireDefault(require("./Image"));
|
|
9
|
+
var _MeetingEventTimezone = _interopRequireDefault(require("./MeetingEventTimezone"));
|
|
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 MeetingEvent model module.
|
|
30
|
+
* @module model/MeetingEvent
|
|
31
|
+
* @version 0.1.34
|
|
32
|
+
*/
|
|
33
|
+
var MeetingEvent = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new <code>MeetingEvent</code>.
|
|
36
|
+
* @alias module:model/MeetingEvent
|
|
37
|
+
*/
|
|
38
|
+
function MeetingEvent() {
|
|
39
|
+
_classCallCheck(this, MeetingEvent);
|
|
40
|
+
MeetingEvent.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(MeetingEvent, [{
|
|
49
|
+
key: "getName",
|
|
50
|
+
value:
|
|
51
|
+
/**
|
|
52
|
+
* @return {String}
|
|
53
|
+
*/
|
|
54
|
+
function getName() {
|
|
55
|
+
return this.name;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @param {String} name
|
|
60
|
+
*/
|
|
61
|
+
}, {
|
|
62
|
+
key: "setName",
|
|
63
|
+
value: function setName(name) {
|
|
64
|
+
this['name'] = name;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* @return {String}
|
|
68
|
+
*/
|
|
69
|
+
}, {
|
|
70
|
+
key: "getLocation",
|
|
71
|
+
value: function getLocation() {
|
|
72
|
+
return this.location;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @param {String} location
|
|
77
|
+
*/
|
|
78
|
+
}, {
|
|
79
|
+
key: "setLocation",
|
|
80
|
+
value: function setLocation(location) {
|
|
81
|
+
this['location'] = location;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @return {module:model/MeetingEventTimezone}
|
|
85
|
+
*/
|
|
86
|
+
}, {
|
|
87
|
+
key: "getTimezone",
|
|
88
|
+
value: function getTimezone() {
|
|
89
|
+
return this.timezone;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @param {module:model/MeetingEventTimezone} timezone
|
|
94
|
+
*/
|
|
95
|
+
}, {
|
|
96
|
+
key: "setTimezone",
|
|
97
|
+
value: function setTimezone(timezone) {
|
|
98
|
+
this['timezone'] = timezone;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* @return {Date}
|
|
102
|
+
*/
|
|
103
|
+
}, {
|
|
104
|
+
key: "getEndtime",
|
|
105
|
+
value: function getEndtime() {
|
|
106
|
+
return this.endtime;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @param {Date} endtime
|
|
111
|
+
*/
|
|
112
|
+
}, {
|
|
113
|
+
key: "setEndtime",
|
|
114
|
+
value: function setEndtime(endtime) {
|
|
115
|
+
this['endtime'] = endtime;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* @return {Number}
|
|
119
|
+
*/
|
|
120
|
+
}, {
|
|
121
|
+
key: "getEventtypeid",
|
|
122
|
+
value: function getEventtypeid() {
|
|
123
|
+
return this.eventtypeid;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @param {Number} eventtypeid
|
|
128
|
+
*/
|
|
129
|
+
}, {
|
|
130
|
+
key: "setEventtypeid",
|
|
131
|
+
value: function setEventtypeid(eventtypeid) {
|
|
132
|
+
this['eventtypeid'] = eventtypeid;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* @return {String}
|
|
136
|
+
*/
|
|
137
|
+
}, {
|
|
138
|
+
key: "getDescription",
|
|
139
|
+
value: function getDescription() {
|
|
140
|
+
return this.description;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @param {String} description
|
|
145
|
+
*/
|
|
146
|
+
}, {
|
|
147
|
+
key: "setDescription",
|
|
148
|
+
value: function setDescription(description) {
|
|
149
|
+
this['description'] = description;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* @return {Date}
|
|
153
|
+
*/
|
|
154
|
+
}, {
|
|
155
|
+
key: "getStarttime",
|
|
156
|
+
value: function getStarttime() {
|
|
157
|
+
return this.starttime;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @param {Date} starttime
|
|
162
|
+
*/
|
|
163
|
+
}, {
|
|
164
|
+
key: "setStarttime",
|
|
165
|
+
value: function setStarttime(starttime) {
|
|
166
|
+
this['starttime'] = starttime;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* @return {String}
|
|
170
|
+
*/
|
|
171
|
+
}, {
|
|
172
|
+
key: "getCreator",
|
|
173
|
+
value: function getCreator() {
|
|
174
|
+
return this.creator;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* @param {String} creator
|
|
179
|
+
*/
|
|
180
|
+
}, {
|
|
181
|
+
key: "setCreator",
|
|
182
|
+
value: function setCreator(creator) {
|
|
183
|
+
this['creator'] = creator;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* @return {module:model/Image}
|
|
187
|
+
*/
|
|
188
|
+
}, {
|
|
189
|
+
key: "getMainPhoto",
|
|
190
|
+
value: function getMainPhoto() {
|
|
191
|
+
return this.mainPhoto;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* @param {module:model/Image} mainPhoto
|
|
196
|
+
*/
|
|
197
|
+
}, {
|
|
198
|
+
key: "setMainPhoto",
|
|
199
|
+
value: function setMainPhoto(mainPhoto) {
|
|
200
|
+
this['mainPhoto'] = mainPhoto;
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* @return {String}
|
|
204
|
+
*/
|
|
205
|
+
}, {
|
|
206
|
+
key: "getVenue",
|
|
207
|
+
value: function getVenue() {
|
|
208
|
+
return this.venue;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* @param {String} venue
|
|
213
|
+
*/
|
|
214
|
+
}, {
|
|
215
|
+
key: "setVenue",
|
|
216
|
+
value: function setVenue(venue) {
|
|
217
|
+
this['venue'] = venue;
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* @return {Boolean}
|
|
221
|
+
*/
|
|
222
|
+
}, {
|
|
223
|
+
key: "getLiveEvent",
|
|
224
|
+
value: function getLiveEvent() {
|
|
225
|
+
return this.liveEvent;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @param {Boolean} liveEvent
|
|
230
|
+
*/
|
|
231
|
+
}, {
|
|
232
|
+
key: "setLiveEvent",
|
|
233
|
+
value: function setLiveEvent(liveEvent) {
|
|
234
|
+
this['liveEvent'] = liveEvent;
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* @return {Boolean}
|
|
238
|
+
*/
|
|
239
|
+
}, {
|
|
240
|
+
key: "getGuestlistvisible",
|
|
241
|
+
value: function getGuestlistvisible() {
|
|
242
|
+
return this.guestlistvisible;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* @param {Boolean} guestlistvisible
|
|
247
|
+
*/
|
|
248
|
+
}, {
|
|
249
|
+
key: "setGuestlistvisible",
|
|
250
|
+
value: function setGuestlistvisible(guestlistvisible) {
|
|
251
|
+
this['guestlistvisible'] = guestlistvisible;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* @return {String}
|
|
255
|
+
*/
|
|
256
|
+
}, {
|
|
257
|
+
key: "getRsvpurl",
|
|
258
|
+
value: function getRsvpurl() {
|
|
259
|
+
return this.rsvpurl;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* @param {String} rsvpurl
|
|
264
|
+
*/
|
|
265
|
+
}, {
|
|
266
|
+
key: "setRsvpurl",
|
|
267
|
+
value: function setRsvpurl(rsvpurl) {
|
|
268
|
+
this['rsvpurl'] = rsvpurl;
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* @return {module:model/MeetingEvent.VisibilityEnum}
|
|
272
|
+
*/
|
|
273
|
+
}, {
|
|
274
|
+
key: "getVisibility",
|
|
275
|
+
value: function getVisibility() {
|
|
276
|
+
return this.visibility;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* @param {module:model/MeetingEvent.VisibilityEnum} visibility
|
|
281
|
+
*/
|
|
282
|
+
}, {
|
|
283
|
+
key: "setVisibility",
|
|
284
|
+
value: function setVisibility(visibility) {
|
|
285
|
+
this['visibility'] = visibility;
|
|
286
|
+
}
|
|
287
|
+
/**
|
|
288
|
+
* @return {Number}
|
|
289
|
+
*/
|
|
290
|
+
}, {
|
|
291
|
+
key: "getMembercount",
|
|
292
|
+
value: function getMembercount() {
|
|
293
|
+
return this.membercount;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* @param {Number} membercount
|
|
298
|
+
*/
|
|
299
|
+
}, {
|
|
300
|
+
key: "setMembercount",
|
|
301
|
+
value: function setMembercount(membercount) {
|
|
302
|
+
this['membercount'] = membercount;
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* @return {String}
|
|
306
|
+
*/
|
|
307
|
+
}, {
|
|
308
|
+
key: "getShortdescription",
|
|
309
|
+
value: function getShortdescription() {
|
|
310
|
+
return this.shortdescription;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* @param {String} shortdescription
|
|
315
|
+
*/
|
|
316
|
+
}, {
|
|
317
|
+
key: "setShortdescription",
|
|
318
|
+
value: function setShortdescription(shortdescription) {
|
|
319
|
+
this['shortdescription'] = shortdescription;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* @return {Object}
|
|
323
|
+
*/
|
|
324
|
+
}, {
|
|
325
|
+
key: "getData",
|
|
326
|
+
value: function getData() {
|
|
327
|
+
return this.data;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* @param {Object} data
|
|
332
|
+
*/
|
|
333
|
+
}, {
|
|
334
|
+
key: "setData",
|
|
335
|
+
value: function setData(data) {
|
|
336
|
+
this['data'] = data;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* @return {Number}
|
|
340
|
+
*/
|
|
341
|
+
}, {
|
|
342
|
+
key: "getId",
|
|
343
|
+
value: function getId() {
|
|
344
|
+
return this.id;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* @param {Number} id
|
|
349
|
+
*/
|
|
350
|
+
}, {
|
|
351
|
+
key: "setId",
|
|
352
|
+
value: function setId(id) {
|
|
353
|
+
this['id'] = id;
|
|
354
|
+
}
|
|
355
|
+
}], [{
|
|
356
|
+
key: "initialize",
|
|
357
|
+
value: function initialize(obj) {}
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* Constructs a <code>MeetingEvent</code> from a plain JavaScript object, optionally creating a new instance.
|
|
361
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
362
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
363
|
+
* @param {module:model/MeetingEvent} obj Optional instance to populate.
|
|
364
|
+
* @return {module:model/MeetingEvent} The populated <code>MeetingEvent</code> instance.
|
|
365
|
+
*/
|
|
366
|
+
}, {
|
|
367
|
+
key: "constructFromObject",
|
|
368
|
+
value: function constructFromObject(data, obj) {
|
|
369
|
+
if (data) {
|
|
370
|
+
obj = obj || new MeetingEvent();
|
|
371
|
+
if (data.hasOwnProperty('name')) {
|
|
372
|
+
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
373
|
+
}
|
|
374
|
+
if (data.hasOwnProperty('location')) {
|
|
375
|
+
obj['location'] = _ApiClient["default"].convertToType(data['location'], 'String');
|
|
376
|
+
}
|
|
377
|
+
if (data.hasOwnProperty('timezone')) {
|
|
378
|
+
obj['timezone'] = _MeetingEventTimezone["default"].constructFromObject(data['timezone']);
|
|
379
|
+
}
|
|
380
|
+
if (data.hasOwnProperty('endtime')) {
|
|
381
|
+
obj['endtime'] = _ApiClient["default"].convertToType(data['endtime'], 'Date');
|
|
382
|
+
}
|
|
383
|
+
if (data.hasOwnProperty('eventtypeid')) {
|
|
384
|
+
obj['eventtypeid'] = _ApiClient["default"].convertToType(data['eventtypeid'], 'Number');
|
|
385
|
+
}
|
|
386
|
+
if (data.hasOwnProperty('description')) {
|
|
387
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
388
|
+
}
|
|
389
|
+
if (data.hasOwnProperty('starttime')) {
|
|
390
|
+
obj['starttime'] = _ApiClient["default"].convertToType(data['starttime'], 'Date');
|
|
391
|
+
}
|
|
392
|
+
if (data.hasOwnProperty('creator')) {
|
|
393
|
+
obj['creator'] = _ApiClient["default"].convertToType(data['creator'], 'String');
|
|
394
|
+
}
|
|
395
|
+
if (data.hasOwnProperty('mainPhoto')) {
|
|
396
|
+
obj['mainPhoto'] = _Image["default"].constructFromObject(data['mainPhoto']);
|
|
397
|
+
}
|
|
398
|
+
if (data.hasOwnProperty('venue')) {
|
|
399
|
+
obj['venue'] = _ApiClient["default"].convertToType(data['venue'], 'String');
|
|
400
|
+
}
|
|
401
|
+
if (data.hasOwnProperty('liveEvent')) {
|
|
402
|
+
obj['liveEvent'] = _ApiClient["default"].convertToType(data['liveEvent'], 'Boolean');
|
|
403
|
+
}
|
|
404
|
+
if (data.hasOwnProperty('guestlistvisible')) {
|
|
405
|
+
obj['guestlistvisible'] = _ApiClient["default"].convertToType(data['guestlistvisible'], 'Boolean');
|
|
406
|
+
}
|
|
407
|
+
if (data.hasOwnProperty('rsvpurl')) {
|
|
408
|
+
obj['rsvpurl'] = _ApiClient["default"].convertToType(data['rsvpurl'], 'String');
|
|
409
|
+
}
|
|
410
|
+
if (data.hasOwnProperty('visibility')) {
|
|
411
|
+
obj['visibility'] = _ApiClient["default"].convertToType(data['visibility'], 'String');
|
|
412
|
+
}
|
|
413
|
+
if (data.hasOwnProperty('membercount')) {
|
|
414
|
+
obj['membercount'] = _ApiClient["default"].convertToType(data['membercount'], 'Number');
|
|
415
|
+
}
|
|
416
|
+
if (data.hasOwnProperty('shortdescription')) {
|
|
417
|
+
obj['shortdescription'] = _ApiClient["default"].convertToType(data['shortdescription'], 'String');
|
|
418
|
+
}
|
|
419
|
+
if (data.hasOwnProperty('data')) {
|
|
420
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], Object);
|
|
421
|
+
}
|
|
422
|
+
if (data.hasOwnProperty('id')) {
|
|
423
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'Number');
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
return obj;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* Validates the JSON data with respect to <code>MeetingEvent</code>.
|
|
431
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
432
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>MeetingEvent</code>.
|
|
433
|
+
*/
|
|
434
|
+
}, {
|
|
435
|
+
key: "validateJSON",
|
|
436
|
+
value: function validateJSON(data) {
|
|
437
|
+
// ensure the json data is a string
|
|
438
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
439
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
440
|
+
}
|
|
441
|
+
// ensure the json data is a string
|
|
442
|
+
if (data['location'] && !(typeof data['location'] === 'string' || data['location'] instanceof String)) {
|
|
443
|
+
throw new Error("Expected the field `location` to be a primitive type in the JSON string but got " + data['location']);
|
|
444
|
+
}
|
|
445
|
+
// validate the optional field `timezone`
|
|
446
|
+
if (data['timezone']) {
|
|
447
|
+
// data not null
|
|
448
|
+
_MeetingEventTimezone["default"].validateJSON(data['timezone']);
|
|
449
|
+
}
|
|
450
|
+
// ensure the json data is a string
|
|
451
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
452
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
453
|
+
}
|
|
454
|
+
// ensure the json data is a string
|
|
455
|
+
if (data['creator'] && !(typeof data['creator'] === 'string' || data['creator'] instanceof String)) {
|
|
456
|
+
throw new Error("Expected the field `creator` to be a primitive type in the JSON string but got " + data['creator']);
|
|
457
|
+
}
|
|
458
|
+
// validate the optional field `mainPhoto`
|
|
459
|
+
if (data['mainPhoto']) {
|
|
460
|
+
// data not null
|
|
461
|
+
_Image["default"].validateJSON(data['mainPhoto']);
|
|
462
|
+
}
|
|
463
|
+
// ensure the json data is a string
|
|
464
|
+
if (data['venue'] && !(typeof data['venue'] === 'string' || data['venue'] instanceof String)) {
|
|
465
|
+
throw new Error("Expected the field `venue` to be a primitive type in the JSON string but got " + data['venue']);
|
|
466
|
+
}
|
|
467
|
+
// ensure the json data is a string
|
|
468
|
+
if (data['rsvpurl'] && !(typeof data['rsvpurl'] === 'string' || data['rsvpurl'] instanceof String)) {
|
|
469
|
+
throw new Error("Expected the field `rsvpurl` to be a primitive type in the JSON string but got " + data['rsvpurl']);
|
|
470
|
+
}
|
|
471
|
+
// ensure the json data is a string
|
|
472
|
+
if (data['visibility'] && !(typeof data['visibility'] === 'string' || data['visibility'] instanceof String)) {
|
|
473
|
+
throw new Error("Expected the field `visibility` to be a primitive type in the JSON string but got " + data['visibility']);
|
|
474
|
+
}
|
|
475
|
+
// ensure the json data is a string
|
|
476
|
+
if (data['shortdescription'] && !(typeof data['shortdescription'] === 'string' || data['shortdescription'] instanceof String)) {
|
|
477
|
+
throw new Error("Expected the field `shortdescription` to be a primitive type in the JSON string but got " + data['shortdescription']);
|
|
478
|
+
}
|
|
479
|
+
return true;
|
|
480
|
+
}
|
|
481
|
+
}]);
|
|
482
|
+
return MeetingEvent;
|
|
483
|
+
}();
|
|
484
|
+
/**
|
|
485
|
+
* @member {String} name
|
|
486
|
+
*/
|
|
487
|
+
MeetingEvent.prototype['name'] = undefined;
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* @member {String} location
|
|
491
|
+
*/
|
|
492
|
+
MeetingEvent.prototype['location'] = undefined;
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* @member {module:model/MeetingEventTimezone} timezone
|
|
496
|
+
*/
|
|
497
|
+
MeetingEvent.prototype['timezone'] = undefined;
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* @member {Date} endtime
|
|
501
|
+
*/
|
|
502
|
+
MeetingEvent.prototype['endtime'] = undefined;
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* @member {Number} eventtypeid
|
|
506
|
+
*/
|
|
507
|
+
MeetingEvent.prototype['eventtypeid'] = undefined;
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* @member {String} description
|
|
511
|
+
*/
|
|
512
|
+
MeetingEvent.prototype['description'] = undefined;
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* @member {Date} starttime
|
|
516
|
+
*/
|
|
517
|
+
MeetingEvent.prototype['starttime'] = undefined;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* @member {String} creator
|
|
521
|
+
*/
|
|
522
|
+
MeetingEvent.prototype['creator'] = undefined;
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* @member {module:model/Image} mainPhoto
|
|
526
|
+
*/
|
|
527
|
+
MeetingEvent.prototype['mainPhoto'] = undefined;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* @member {String} venue
|
|
531
|
+
*/
|
|
532
|
+
MeetingEvent.prototype['venue'] = undefined;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* @member {Boolean} liveEvent
|
|
536
|
+
*/
|
|
537
|
+
MeetingEvent.prototype['liveEvent'] = undefined;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* @member {Boolean} guestlistvisible
|
|
541
|
+
*/
|
|
542
|
+
MeetingEvent.prototype['guestlistvisible'] = undefined;
|
|
543
|
+
|
|
544
|
+
/**
|
|
545
|
+
* @member {String} rsvpurl
|
|
546
|
+
*/
|
|
547
|
+
MeetingEvent.prototype['rsvpurl'] = undefined;
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* @member {module:model/MeetingEvent.VisibilityEnum} visibility
|
|
551
|
+
*/
|
|
552
|
+
MeetingEvent.prototype['visibility'] = undefined;
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* @member {Number} membercount
|
|
556
|
+
*/
|
|
557
|
+
MeetingEvent.prototype['membercount'] = undefined;
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* @member {String} shortdescription
|
|
561
|
+
*/
|
|
562
|
+
MeetingEvent.prototype['shortdescription'] = undefined;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* @member {Object} data
|
|
566
|
+
*/
|
|
567
|
+
MeetingEvent.prototype['data'] = undefined;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* @member {Number} id
|
|
571
|
+
*/
|
|
572
|
+
MeetingEvent.prototype['id'] = undefined;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Allowed values for the <code>visibility</code> property.
|
|
576
|
+
* @enum {String}
|
|
577
|
+
* @readonly
|
|
578
|
+
*/
|
|
579
|
+
MeetingEvent['VisibilityEnum'] = {
|
|
580
|
+
/**
|
|
581
|
+
* value: "PUBLIC"
|
|
582
|
+
* @const
|
|
583
|
+
*/
|
|
584
|
+
"PUBLIC": "PUBLIC",
|
|
585
|
+
/**
|
|
586
|
+
* value: "PRIVATE"
|
|
587
|
+
* @const
|
|
588
|
+
*/
|
|
589
|
+
"PRIVATE": "PRIVATE"
|
|
590
|
+
};
|
|
591
|
+
var _default = exports["default"] = MeetingEvent;
|