@tennac-booking/sdk 1.0.188 → 1.0.189
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/.openapi-generator/FILES +1 -0
- package/README.md +1 -0
- package/api.ts +50 -0
- package/dist/api.d.ts +46 -0
- package/dist/api.js +14 -4
- package/dist/esm/api.d.ts +46 -0
- package/dist/esm/api.js +9 -0
- package/docs/QuickReservationClubSummary.md +12 -0
- package/docs/QuickReservationCourtType.md +10 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -296,6 +296,7 @@ docs/PublishEventResponse.md
|
|
|
296
296
|
docs/QuickReservationClubSport.md
|
|
297
297
|
docs/QuickReservationClubSummary.md
|
|
298
298
|
docs/QuickReservationClubSummaryLocation.md
|
|
299
|
+
docs/QuickReservationCourtType.md
|
|
299
300
|
docs/QuickReservationResponse.md
|
|
300
301
|
docs/QuickReservationSlotSummary.md
|
|
301
302
|
docs/RecordWeekdayKeyClubDaySchedule.md
|
package/README.md
CHANGED
|
@@ -555,6 +555,7 @@ Class | Method | HTTP request | Description
|
|
|
555
555
|
- [QuickReservationClubSport](docs/QuickReservationClubSport.md)
|
|
556
556
|
- [QuickReservationClubSummary](docs/QuickReservationClubSummary.md)
|
|
557
557
|
- [QuickReservationClubSummaryLocation](docs/QuickReservationClubSummaryLocation.md)
|
|
558
|
+
- [QuickReservationCourtType](docs/QuickReservationCourtType.md)
|
|
558
559
|
- [QuickReservationResponse](docs/QuickReservationResponse.md)
|
|
559
560
|
- [QuickReservationSlotSummary](docs/QuickReservationSlotSummary.md)
|
|
560
561
|
- [RecordWeekdayKeyClubDaySchedule](docs/RecordWeekdayKeyClubDaySchedule.md)
|
package/api.ts
CHANGED
|
@@ -9628,6 +9628,42 @@ export interface QuickReservationClubSummary {
|
|
|
9628
9628
|
* @memberof QuickReservationClubSummary
|
|
9629
9629
|
*/
|
|
9630
9630
|
'description'?: string;
|
|
9631
|
+
/**
|
|
9632
|
+
* Images de bannière du club
|
|
9633
|
+
* @type {Array<string>}
|
|
9634
|
+
* @memberof QuickReservationClubSummary
|
|
9635
|
+
*/
|
|
9636
|
+
'bannerPictures'?: Array<string>;
|
|
9637
|
+
/**
|
|
9638
|
+
* Surfaces des terrains des créneaux retournés
|
|
9639
|
+
* @type {Array<string>}
|
|
9640
|
+
* @memberof QuickReservationClubSummary
|
|
9641
|
+
*/
|
|
9642
|
+
'surfaces'?: Array<string>;
|
|
9643
|
+
/**
|
|
9644
|
+
* Types de terrains (indoor/outdoor) présents dans les créneaux retournés
|
|
9645
|
+
* @type {Array<QuickReservationCourtType>}
|
|
9646
|
+
* @memberof QuickReservationClubSummary
|
|
9647
|
+
*/
|
|
9648
|
+
'courtTypes'?: Array<QuickReservationCourtType>;
|
|
9649
|
+
/**
|
|
9650
|
+
* Indique si au moins un créneau est en intérieur
|
|
9651
|
+
* @type {boolean}
|
|
9652
|
+
* @memberof QuickReservationClubSummary
|
|
9653
|
+
*/
|
|
9654
|
+
'hasIndoor'?: boolean;
|
|
9655
|
+
/**
|
|
9656
|
+
* Indique si au moins un créneau est en extérieur
|
|
9657
|
+
* @type {boolean}
|
|
9658
|
+
* @memberof QuickReservationClubSummary
|
|
9659
|
+
*/
|
|
9660
|
+
'hasOutdoor'?: boolean;
|
|
9661
|
+
/**
|
|
9662
|
+
* Durées de créneaux présentes (en minutes)
|
|
9663
|
+
* @type {Array<number>}
|
|
9664
|
+
* @memberof QuickReservationClubSummary
|
|
9665
|
+
*/
|
|
9666
|
+
'durationsMinutes'?: Array<number>;
|
|
9631
9667
|
/**
|
|
9632
9668
|
* Distance par rapport à la recherche, en mètres
|
|
9633
9669
|
* @type {number}
|
|
@@ -9696,6 +9732,20 @@ export interface QuickReservationClubSummaryLocation {
|
|
|
9696
9732
|
*/
|
|
9697
9733
|
'latitude'?: number;
|
|
9698
9734
|
}
|
|
9735
|
+
/**
|
|
9736
|
+
*
|
|
9737
|
+
* @export
|
|
9738
|
+
* @enum {string}
|
|
9739
|
+
*/
|
|
9740
|
+
|
|
9741
|
+
export const QuickReservationCourtType = {
|
|
9742
|
+
Indoor: 'indoor',
|
|
9743
|
+
Outdoor: 'outdoor'
|
|
9744
|
+
} as const;
|
|
9745
|
+
|
|
9746
|
+
export type QuickReservationCourtType = typeof QuickReservationCourtType[keyof typeof QuickReservationCourtType];
|
|
9747
|
+
|
|
9748
|
+
|
|
9699
9749
|
/**
|
|
9700
9750
|
*
|
|
9701
9751
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -9461,6 +9461,42 @@ export interface QuickReservationClubSummary {
|
|
|
9461
9461
|
* @memberof QuickReservationClubSummary
|
|
9462
9462
|
*/
|
|
9463
9463
|
'description'?: string;
|
|
9464
|
+
/**
|
|
9465
|
+
* Images de bannière du club
|
|
9466
|
+
* @type {Array<string>}
|
|
9467
|
+
* @memberof QuickReservationClubSummary
|
|
9468
|
+
*/
|
|
9469
|
+
'bannerPictures'?: Array<string>;
|
|
9470
|
+
/**
|
|
9471
|
+
* Surfaces des terrains des créneaux retournés
|
|
9472
|
+
* @type {Array<string>}
|
|
9473
|
+
* @memberof QuickReservationClubSummary
|
|
9474
|
+
*/
|
|
9475
|
+
'surfaces'?: Array<string>;
|
|
9476
|
+
/**
|
|
9477
|
+
* Types de terrains (indoor/outdoor) présents dans les créneaux retournés
|
|
9478
|
+
* @type {Array<QuickReservationCourtType>}
|
|
9479
|
+
* @memberof QuickReservationClubSummary
|
|
9480
|
+
*/
|
|
9481
|
+
'courtTypes'?: Array<QuickReservationCourtType>;
|
|
9482
|
+
/**
|
|
9483
|
+
* Indique si au moins un créneau est en intérieur
|
|
9484
|
+
* @type {boolean}
|
|
9485
|
+
* @memberof QuickReservationClubSummary
|
|
9486
|
+
*/
|
|
9487
|
+
'hasIndoor'?: boolean;
|
|
9488
|
+
/**
|
|
9489
|
+
* Indique si au moins un créneau est en extérieur
|
|
9490
|
+
* @type {boolean}
|
|
9491
|
+
* @memberof QuickReservationClubSummary
|
|
9492
|
+
*/
|
|
9493
|
+
'hasOutdoor'?: boolean;
|
|
9494
|
+
/**
|
|
9495
|
+
* Durées de créneaux présentes (en minutes)
|
|
9496
|
+
* @type {Array<number>}
|
|
9497
|
+
* @memberof QuickReservationClubSummary
|
|
9498
|
+
*/
|
|
9499
|
+
'durationsMinutes'?: Array<number>;
|
|
9464
9500
|
/**
|
|
9465
9501
|
* Distance par rapport à la recherche, en mètres
|
|
9466
9502
|
* @type {number}
|
|
@@ -9529,6 +9565,16 @@ export interface QuickReservationClubSummaryLocation {
|
|
|
9529
9565
|
*/
|
|
9530
9566
|
'latitude'?: number;
|
|
9531
9567
|
}
|
|
9568
|
+
/**
|
|
9569
|
+
*
|
|
9570
|
+
* @export
|
|
9571
|
+
* @enum {string}
|
|
9572
|
+
*/
|
|
9573
|
+
export declare const QuickReservationCourtType: {
|
|
9574
|
+
readonly Indoor: "indoor";
|
|
9575
|
+
readonly Outdoor: "outdoor";
|
|
9576
|
+
};
|
|
9577
|
+
export type QuickReservationCourtType = typeof QuickReservationCourtType[keyof typeof QuickReservationCourtType];
|
|
9532
9578
|
/**
|
|
9533
9579
|
*
|
|
9534
9580
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -22,10 +22,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
25
|
+
exports.UpdateRecurringDefinitionRequestTypeEnum = exports.UpdateRecurringDefinitionRequestVisibilityTypeEnum = exports.UpdateEventRequestVisibilityTypeEnum = exports.UpdateEventRequestParticipationTypeEnum = exports.UpdateEventRequestRecurringTypeEnum = exports.UpdateEventRequestTypeEnum = exports.UpdateClubRoleRequestRoleEnum = exports.UpdateClubMemberRequestRoleEnum = exports.TrendDirection = exports.SurfaceType = exports.SupportedLanguage = exports.StaffUserProfileResponseCreatedFromEnum = exports.StaffBookingPaymentState = exports.SportKey = exports.RegisterRequestBodyLocationTypeEnum = exports.RecurringDefinitionResponseRecurringTypeEnum = exports.QuickReservationCourtType = exports.PublicAccessSettingsPaymentModeEnum = exports.PlayerCategoryId = exports.PlanInterval = exports.PaymentMethod = exports.ParticipationType = exports.PartialPublicAccessSettingsPaymentModeEnum = exports.InvoiceStatusSETUPSUCCESS = exports.InvoiceStatusSETUPPENDING = exports.InvoiceStatus = exports.ImageContextType = exports.IUserLocationTypeEnum = exports.IUserAttributesCreatedFromEnum = exports.Gender = exports.EventResponseVisibilityTypeEnum = exports.EventResponseParticipationTypeEnum = exports.EventResponseRecurringTypeEnum = exports.EventResponseTypeEnum = exports.EventBookingStatus = exports.DiscountType = exports.CreateEventRequestVisibilityTypeEnum = exports.CreateEventRequestParticipationTypeEnum = exports.CreateEventRequestRecurringTypeEnum = exports.CreateEventRequestTypeEnum = exports.CreateClubRoleRequestRoleEnum = exports.CreateActualityRequestDiffusionModeEnum = exports.CourtStatus = exports.ClubRoleResponseRoleEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
|
|
26
|
+
exports.ClubRolesManagerApiFactory = exports.ClubRolesManagerApiFp = exports.ClubRolesManagerApiAxiosParamCreator = exports.ClubCustomerStaffApi = exports.ClubCustomerStaffApiFactory = exports.ClubCustomerStaffApiFp = exports.ClubCustomerStaffApiAxiosParamCreator = exports.ClubCustomerMeApi = exports.ClubCustomerMeApiFactory = exports.ClubCustomerMeApiFp = exports.ClubCustomerMeApiAxiosParamCreator = exports.ClubAnalyticsStaffApi = exports.ClubAnalyticsStaffApiFactory = exports.ClubAnalyticsStaffApiFp = exports.ClubAnalyticsStaffApiAxiosParamCreator = exports.ClubAnalyticsApi = exports.ClubAnalyticsApiFactory = exports.ClubAnalyticsApiFp = exports.ClubAnalyticsApiAxiosParamCreator = exports.ClientApi = exports.ClientApiFactory = exports.ClientApiFp = exports.ClientApiAxiosParamCreator = exports.BookingsUserApi = exports.BookingsUserApiFactory = exports.BookingsUserApiFp = exports.BookingsUserApiAxiosParamCreator = exports.BookingsStaffApi = exports.BookingsStaffApiFactory = exports.BookingsStaffApiFp = exports.BookingsStaffApiAxiosParamCreator = exports.BookingsManagerApi = exports.BookingsManagerApiFactory = exports.BookingsManagerApiFp = exports.BookingsManagerApiAxiosParamCreator = exports.BookingsApi = exports.BookingsApiFactory = exports.BookingsApiFp = exports.BookingsApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.WeekdayKey = exports.WaitListResponseTargetTypeEnum = exports.VisibilityType = exports.UserProfileResponseCreatedFromEnum = exports.UserLocationSummaryTypeEnum = exports.UpdateRecurringDefinitionRequestRecurringTypeEnum = exports.UpdateRecurringDefinitionRequestParticipationTypeEnum = void 0;
|
|
27
|
+
exports.GetMonthlyEventsVisibilityTypeEnum = exports.GetDailyEventsTypeEnum = exports.GetDailyEventsVisibilityTypeEnum = exports.EventsStaffApi = exports.EventsStaffApiFactory = exports.EventsStaffApiFp = exports.EventsStaffApiAxiosParamCreator = exports.EventsManagerApi = exports.EventsManagerApiFactory = exports.EventsManagerApiFp = exports.EventsManagerApiAxiosParamCreator = exports.GetPublishedEventsByClubIdTypeEnum = exports.GetPublishedEventsByClubIdVisibilityTypeEnum = exports.EventsApi = exports.EventsApiFactory = exports.EventsApiFp = exports.EventsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ContactApi = exports.ContactApiFactory = exports.ContactApiFp = exports.ContactApiAxiosParamCreator = exports.ClubsStaffApi = exports.ClubsStaffApiFactory = exports.ClubsStaffApiFp = exports.ClubsStaffApiAxiosParamCreator = exports.ClubsManagerApi = exports.ClubsManagerApiFactory = exports.ClubsManagerApiFp = exports.ClubsManagerApiAxiosParamCreator = exports.ClubsApi = exports.ClubsApiFactory = exports.ClubsApiFp = exports.ClubsApiAxiosParamCreator = exports.ClubSettingsStaffApi = exports.ClubSettingsStaffApiFactory = exports.ClubSettingsStaffApiFp = exports.ClubSettingsStaffApiAxiosParamCreator = exports.ClubSettingsManagerApi = exports.ClubSettingsManagerApiFactory = exports.ClubSettingsManagerApiFp = exports.ClubSettingsManagerApiAxiosParamCreator = exports.ClubRolesStaffApi = exports.ClubRolesStaffApiFactory = exports.ClubRolesStaffApiFp = exports.ClubRolesStaffApiAxiosParamCreator = exports.ClubRolesManagerApi = void 0;
|
|
28
|
+
exports.WaitListStaffApiFactory = exports.WaitListStaffApiFp = exports.WaitListStaffApiAxiosParamCreator = exports.WaitListApi = exports.WaitListApiFactory = exports.WaitListApiFp = exports.WaitListApiAxiosParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = exports.SubscriptionsPublicApiAxiosParamCreator = exports.SubscriptionsManagerApi = exports.SubscriptionsManagerApiFactory = exports.SubscriptionsManagerApiFp = exports.SubscriptionsManagerApiAxiosParamCreator = exports.SportsPublicApi = exports.SportsPublicApiFactory = exports.SportsPublicApiFp = exports.SportsPublicApiAxiosParamCreator = exports.SportsManagerApi = exports.SportsManagerApiFactory = exports.SportsManagerApiFp = exports.SportsManagerApiAxiosParamCreator = exports.PublicEmailApi = exports.PublicEmailApiFactory = exports.PublicEmailApiFp = exports.PublicEmailApiAxiosParamCreator = exports.ImagesApi = exports.ImagesApiFactory = exports.ImagesApiFp = exports.ImagesApiAxiosParamCreator = exports.GetWeeklyEventsTypeEnum = exports.GetWeeklyEventsVisibilityTypeEnum = exports.GetMonthlyEventsTypeEnum = void 0;
|
|
29
|
+
exports.WaitListStaffApi = void 0;
|
|
29
30
|
const axios_1 = require("axios");
|
|
30
31
|
// Some imports not used depending on template conditions
|
|
31
32
|
// @ts-ignore
|
|
@@ -286,6 +287,15 @@ exports.PublicAccessSettingsPaymentModeEnum = {
|
|
|
286
287
|
AccessFee: 'access_fee',
|
|
287
288
|
PerCourt: 'per_court'
|
|
288
289
|
};
|
|
290
|
+
/**
|
|
291
|
+
*
|
|
292
|
+
* @export
|
|
293
|
+
* @enum {string}
|
|
294
|
+
*/
|
|
295
|
+
exports.QuickReservationCourtType = {
|
|
296
|
+
Indoor: 'indoor',
|
|
297
|
+
Outdoor: 'outdoor'
|
|
298
|
+
};
|
|
289
299
|
exports.RecurringDefinitionResponseRecurringTypeEnum = {
|
|
290
300
|
Daily: 'daily',
|
|
291
301
|
Weekly: 'weekly',
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -9461,6 +9461,42 @@ export interface QuickReservationClubSummary {
|
|
|
9461
9461
|
* @memberof QuickReservationClubSummary
|
|
9462
9462
|
*/
|
|
9463
9463
|
'description'?: string;
|
|
9464
|
+
/**
|
|
9465
|
+
* Images de bannière du club
|
|
9466
|
+
* @type {Array<string>}
|
|
9467
|
+
* @memberof QuickReservationClubSummary
|
|
9468
|
+
*/
|
|
9469
|
+
'bannerPictures'?: Array<string>;
|
|
9470
|
+
/**
|
|
9471
|
+
* Surfaces des terrains des créneaux retournés
|
|
9472
|
+
* @type {Array<string>}
|
|
9473
|
+
* @memberof QuickReservationClubSummary
|
|
9474
|
+
*/
|
|
9475
|
+
'surfaces'?: Array<string>;
|
|
9476
|
+
/**
|
|
9477
|
+
* Types de terrains (indoor/outdoor) présents dans les créneaux retournés
|
|
9478
|
+
* @type {Array<QuickReservationCourtType>}
|
|
9479
|
+
* @memberof QuickReservationClubSummary
|
|
9480
|
+
*/
|
|
9481
|
+
'courtTypes'?: Array<QuickReservationCourtType>;
|
|
9482
|
+
/**
|
|
9483
|
+
* Indique si au moins un créneau est en intérieur
|
|
9484
|
+
* @type {boolean}
|
|
9485
|
+
* @memberof QuickReservationClubSummary
|
|
9486
|
+
*/
|
|
9487
|
+
'hasIndoor'?: boolean;
|
|
9488
|
+
/**
|
|
9489
|
+
* Indique si au moins un créneau est en extérieur
|
|
9490
|
+
* @type {boolean}
|
|
9491
|
+
* @memberof QuickReservationClubSummary
|
|
9492
|
+
*/
|
|
9493
|
+
'hasOutdoor'?: boolean;
|
|
9494
|
+
/**
|
|
9495
|
+
* Durées de créneaux présentes (en minutes)
|
|
9496
|
+
* @type {Array<number>}
|
|
9497
|
+
* @memberof QuickReservationClubSummary
|
|
9498
|
+
*/
|
|
9499
|
+
'durationsMinutes'?: Array<number>;
|
|
9464
9500
|
/**
|
|
9465
9501
|
* Distance par rapport à la recherche, en mètres
|
|
9466
9502
|
* @type {number}
|
|
@@ -9529,6 +9565,16 @@ export interface QuickReservationClubSummaryLocation {
|
|
|
9529
9565
|
*/
|
|
9530
9566
|
'latitude'?: number;
|
|
9531
9567
|
}
|
|
9568
|
+
/**
|
|
9569
|
+
*
|
|
9570
|
+
* @export
|
|
9571
|
+
* @enum {string}
|
|
9572
|
+
*/
|
|
9573
|
+
export declare const QuickReservationCourtType: {
|
|
9574
|
+
readonly Indoor: "indoor";
|
|
9575
|
+
readonly Outdoor: "outdoor";
|
|
9576
|
+
};
|
|
9577
|
+
export type QuickReservationCourtType = typeof QuickReservationCourtType[keyof typeof QuickReservationCourtType];
|
|
9532
9578
|
/**
|
|
9533
9579
|
*
|
|
9534
9580
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -280,6 +280,15 @@ export const PublicAccessSettingsPaymentModeEnum = {
|
|
|
280
280
|
AccessFee: 'access_fee',
|
|
281
281
|
PerCourt: 'per_court'
|
|
282
282
|
};
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @export
|
|
286
|
+
* @enum {string}
|
|
287
|
+
*/
|
|
288
|
+
export const QuickReservationCourtType = {
|
|
289
|
+
Indoor: 'indoor',
|
|
290
|
+
Outdoor: 'outdoor'
|
|
291
|
+
};
|
|
283
292
|
export const RecurringDefinitionResponseRecurringTypeEnum = {
|
|
284
293
|
Daily: 'daily',
|
|
285
294
|
Weekly: 'weekly',
|
|
@@ -8,6 +8,12 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**clubId** | **string** | ID du club | [default to undefined]
|
|
9
9
|
**clubName** | **string** | Nom du club | [default to undefined]
|
|
10
10
|
**description** | **string** | Description du club | [optional] [default to undefined]
|
|
11
|
+
**bannerPictures** | **Array<string>** | Images de bannière du club | [optional] [default to undefined]
|
|
12
|
+
**surfaces** | **Array<string>** | Surfaces des terrains des créneaux retournés | [optional] [default to undefined]
|
|
13
|
+
**courtTypes** | [**Array<QuickReservationCourtType>**](QuickReservationCourtType.md) | Types de terrains (indoor/outdoor) présents dans les créneaux retournés | [optional] [default to undefined]
|
|
14
|
+
**hasIndoor** | **boolean** | Indique si au moins un créneau est en intérieur | [optional] [default to undefined]
|
|
15
|
+
**hasOutdoor** | **boolean** | Indique si au moins un créneau est en extérieur | [optional] [default to undefined]
|
|
16
|
+
**durationsMinutes** | **Array<number>** | Durées de créneaux présentes (en minutes) | [optional] [default to undefined]
|
|
11
17
|
**distanceInMeters** | **number** | Distance par rapport à la recherche, en mètres | [default to undefined]
|
|
12
18
|
**location** | [**QuickReservationClubSummaryLocation**](QuickReservationClubSummaryLocation.md) | | [optional] [default to undefined]
|
|
13
19
|
**slots** | [**Array<QuickReservationSlotSummary>**](QuickReservationSlotSummary.md) | Créneaux disponibles correspondant aux filtres | [default to undefined]
|
|
@@ -22,6 +28,12 @@ const instance: QuickReservationClubSummary = {
|
|
|
22
28
|
clubId,
|
|
23
29
|
clubName,
|
|
24
30
|
description,
|
|
31
|
+
bannerPictures,
|
|
32
|
+
surfaces,
|
|
33
|
+
courtTypes,
|
|
34
|
+
hasIndoor,
|
|
35
|
+
hasOutdoor,
|
|
36
|
+
durationsMinutes,
|
|
25
37
|
distanceInMeters,
|
|
26
38
|
location,
|
|
27
39
|
slots,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# QuickReservationCourtType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Enum
|
|
5
|
+
|
|
6
|
+
* `Indoor` (value: `'indoor'`)
|
|
7
|
+
|
|
8
|
+
* `Outdoor` (value: `'outdoor'`)
|
|
9
|
+
|
|
10
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|