@gooday_corp/gooday-api-client 1.3.36 → 1.3.38

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/docs/AIApi.md CHANGED
@@ -5,6 +5,8 @@ All URIs are relative to *http://localhost:8080*
5
5
  |Method | HTTP request | Description|
6
6
  |------------- | ------------- | -------------|
7
7
  |[**assistantControllerAiSuggestionList**](#assistantcontrolleraisuggestionlist) | **GET** /v1/ai/suggestion/list | |
8
+ |[**assistantControllerGenerateCategoriesFeed**](#assistantcontrollergeneratecategoriesfeed) | **GET** /v1/ai/category-feed | |
9
+ |[**assistantControllerGenerateHomeFeed**](#assistantcontrollergeneratehomefeed) | **GET** /v1/ai/home-feed | |
8
10
  |[**assistantControllerListAssistants**](#assistantcontrollerlistassistants) | **GET** /v1/assistant/list | |
9
11
  |[**assistantControllerMyAssistant**](#assistantcontrollermyassistant) | **GET** /v1/assistant/me | |
10
12
 
@@ -54,6 +56,115 @@ const { status, data } = await apiInstance.assistantControllerAiSuggestionList(
54
56
  - **Accept**: application/json
55
57
 
56
58
 
59
+ ### HTTP response details
60
+ | Status code | Description | Response headers |
61
+ |-------------|-------------|------------------|
62
+ |**200** | | - |
63
+
64
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
65
+
66
+ # **assistantControllerGenerateCategoriesFeed**
67
+ > HomeFeedListResponseDTO assistantControllerGenerateCategoriesFeed()
68
+
69
+
70
+ ### Example
71
+
72
+ ```typescript
73
+ import {
74
+ AIApi,
75
+ Configuration
76
+ } from './api';
77
+
78
+ const configuration = new Configuration();
79
+ const apiInstance = new AIApi(configuration);
80
+
81
+ let page: number; // (optional) (default to 1)
82
+ let pageSize: number; // (optional) (default to 10)
83
+ let identifier: string; // (optional) (default to undefined)
84
+
85
+ const { status, data } = await apiInstance.assistantControllerGenerateCategoriesFeed(
86
+ page,
87
+ pageSize,
88
+ identifier
89
+ );
90
+ ```
91
+
92
+ ### Parameters
93
+
94
+ |Name | Type | Description | Notes|
95
+ |------------- | ------------- | ------------- | -------------|
96
+ | **page** | [**number**] | | (optional) defaults to 1|
97
+ | **pageSize** | [**number**] | | (optional) defaults to 10|
98
+ | **identifier** | [**string**] | | (optional) defaults to undefined|
99
+
100
+
101
+ ### Return type
102
+
103
+ **HomeFeedListResponseDTO**
104
+
105
+ ### Authorization
106
+
107
+ [bearer](../README.md#bearer)
108
+
109
+ ### HTTP request headers
110
+
111
+ - **Content-Type**: Not defined
112
+ - **Accept**: application/json
113
+
114
+
115
+ ### HTTP response details
116
+ | Status code | Description | Response headers |
117
+ |-------------|-------------|------------------|
118
+ |**200** | | - |
119
+
120
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
121
+
122
+ # **assistantControllerGenerateHomeFeed**
123
+ > HomeFeedListResponseDTO assistantControllerGenerateHomeFeed()
124
+
125
+
126
+ ### Example
127
+
128
+ ```typescript
129
+ import {
130
+ AIApi,
131
+ Configuration
132
+ } from './api';
133
+
134
+ const configuration = new Configuration();
135
+ const apiInstance = new AIApi(configuration);
136
+
137
+ let page: number; // (optional) (default to 1)
138
+ let pageSize: number; // (optional) (default to 10)
139
+
140
+ const { status, data } = await apiInstance.assistantControllerGenerateHomeFeed(
141
+ page,
142
+ pageSize
143
+ );
144
+ ```
145
+
146
+ ### Parameters
147
+
148
+ |Name | Type | Description | Notes|
149
+ |------------- | ------------- | ------------- | -------------|
150
+ | **page** | [**number**] | | (optional) defaults to 1|
151
+ | **pageSize** | [**number**] | | (optional) defaults to 10|
152
+
153
+
154
+ ### Return type
155
+
156
+ **HomeFeedListResponseDTO**
157
+
158
+ ### Authorization
159
+
160
+ [bearer](../README.md#bearer)
161
+
162
+ ### HTTP request headers
163
+
164
+ - **Content-Type**: Not defined
165
+ - **Accept**: application/json
166
+
167
+
57
168
  ### HTTP response details
58
169
  | Status code | Description | Response headers |
59
170
  |-------------|-------------|------------------|
@@ -737,7 +737,7 @@ const { status, data } = await apiInstance.bookingControllerRescheduleBooking(
737
737
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
738
738
 
739
739
  # **bookingControllerTrendingEvents**
740
- > FindBookingResponseDTO bookingControllerTrendingEvents()
740
+ > FindBookingResponseDTO bookingControllerTrendingEvents(trendingFilterDTO)
741
741
 
742
742
 
743
743
  ### Example
@@ -745,17 +745,25 @@ const { status, data } = await apiInstance.bookingControllerRescheduleBooking(
745
745
  ```typescript
746
746
  import {
747
747
  BookingApi,
748
- Configuration
748
+ Configuration,
749
+ TrendingFilterDTO
749
750
  } from './api';
750
751
 
751
752
  const configuration = new Configuration();
752
753
  const apiInstance = new BookingApi(configuration);
753
754
 
754
- const { status, data } = await apiInstance.bookingControllerTrendingEvents();
755
+ let trendingFilterDTO: TrendingFilterDTO; //
756
+
757
+ const { status, data } = await apiInstance.bookingControllerTrendingEvents(
758
+ trendingFilterDTO
759
+ );
755
760
  ```
756
761
 
757
762
  ### Parameters
758
- This endpoint does not have any parameters.
763
+
764
+ |Name | Type | Description | Notes|
765
+ |------------- | ------------- | ------------- | -------------|
766
+ | **trendingFilterDTO** | **TrendingFilterDTO**| | |
759
767
 
760
768
 
761
769
  ### Return type
@@ -768,7 +776,7 @@ This endpoint does not have any parameters.
768
776
 
769
777
  ### HTTP request headers
770
778
 
771
- - **Content-Type**: Not defined
779
+ - **Content-Type**: application/json
772
780
  - **Accept**: application/json
773
781
 
774
782
 
@@ -12,12 +12,16 @@ All URIs are relative to *http://localhost:8080*
12
12
  |[**businessStaffControllerDeleteStaff**](#businessstaffcontrollerdeletestaff) | **DELETE** /v1/business-staff/{id} | |
13
13
  |[**businessStaffControllerFindBusinessStaffs**](#businessstaffcontrollerfindbusinessstaffs) | **POST** /v1/business-staff/list | |
14
14
  |[**businessStaffControllerFindByIdBusinessStaff**](#businessstaffcontrollerfindbyidbusinessstaff) | **GET** /v1/business-staff/{id} | |
15
+ |[**businessStaffControllerFindVenueStaffs**](#businessstaffcontrollerfindvenuestaffs) | **POST** /v1/business-staff/public-list | |
15
16
  |[**businessStaffControllerSaveBusinessStaff**](#businessstaffcontrollersavebusinessstaff) | **POST** /v1/business-staff | |
16
17
  |[**businessStaffControllerUpdateStaff**](#businessstaffcontrollerupdatestaff) | **PUT** /v1/business-staff/{id} | |
17
18
  |[**businessTypeControllerFindFavoriteBusinessVenue**](#businesstypecontrollerfindfavoritebusinessvenue) | **GET** /v1/business/favorite/{id} | |
18
19
  |[**businessTypeControllerFindFavoriteBusinessVenueCount**](#businesstypecontrollerfindfavoritebusinessvenuecount) | **GET** /v1/business/favorite/count/{id} | |
19
20
  |[**businessTypeControllerFindFriendsFavoriteBusinessVenueList**](#businesstypecontrollerfindfriendsfavoritebusinessvenuelist) | **POST** /v1/business/friends/favorite | |
21
+ |[**businessTypeControllerGetAllVenue**](#businesstypecontrollergetallvenue) | **POST** /v1/business/venues | |
20
22
  |[**businessTypeControllerGetBusinessVenue**](#businesstypecontrollergetbusinessvenue) | **POST** /v1/business/business-venue | |
23
+ |[**businessTypeControllerGetFavoriteVenueCount**](#businesstypecontrollergetfavoritevenuecount) | **GET** /v1/business/public/favorite/count/{id} | |
24
+ |[**businessTypeControllerGetVenueById**](#businesstypecontrollergetvenuebyid) | **POST** /v1/business/venue/{id} | |
21
25
  |[**businessTypeControllerHighlyRecommended**](#businesstypecontrollerhighlyrecommended) | **GET** /v1/business/highlyRecommended | |
22
26
  |[**businessTypeControllerListAllCategories**](#businesstypecontrollerlistallcategories) | **GET** /v1/business/categories | |
23
27
  |[**businessTypeControllerListBookingDurations**](#businesstypecontrollerlistbookingdurations) | **GET** /v1/business/booking-durations | |
@@ -414,6 +418,57 @@ const { status, data } = await apiInstance.businessStaffControllerFindByIdBusine
414
418
  - **Accept**: application/json
415
419
 
416
420
 
421
+ ### HTTP response details
422
+ | Status code | Description | Response headers |
423
+ |-------------|-------------|------------------|
424
+ |**200** | | - |
425
+
426
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
427
+
428
+ # **businessStaffControllerFindVenueStaffs**
429
+ > BusinessStaffsResponseDTO businessStaffControllerFindVenueStaffs(findBusinessStaff)
430
+
431
+
432
+ ### Example
433
+
434
+ ```typescript
435
+ import {
436
+ BusinessApi,
437
+ Configuration,
438
+ FindBusinessStaff
439
+ } from './api';
440
+
441
+ const configuration = new Configuration();
442
+ const apiInstance = new BusinessApi(configuration);
443
+
444
+ let findBusinessStaff: FindBusinessStaff; //
445
+
446
+ const { status, data } = await apiInstance.businessStaffControllerFindVenueStaffs(
447
+ findBusinessStaff
448
+ );
449
+ ```
450
+
451
+ ### Parameters
452
+
453
+ |Name | Type | Description | Notes|
454
+ |------------- | ------------- | ------------- | -------------|
455
+ | **findBusinessStaff** | **FindBusinessStaff**| | |
456
+
457
+
458
+ ### Return type
459
+
460
+ **BusinessStaffsResponseDTO**
461
+
462
+ ### Authorization
463
+
464
+ No authorization required
465
+
466
+ ### HTTP request headers
467
+
468
+ - **Content-Type**: application/json
469
+ - **Accept**: application/json
470
+
471
+
417
472
  ### HTTP response details
418
473
  | Status code | Description | Response headers |
419
474
  |-------------|-------------|------------------|
@@ -670,6 +725,57 @@ const { status, data } = await apiInstance.businessTypeControllerFindFriendsFavo
670
725
  - **Accept**: application/json
671
726
 
672
727
 
728
+ ### HTTP response details
729
+ | Status code | Description | Response headers |
730
+ |-------------|-------------|------------------|
731
+ |**200** | | - |
732
+
733
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
734
+
735
+ # **businessTypeControllerGetAllVenue**
736
+ > BusinessVenueResponseDTO businessTypeControllerGetAllVenue(getAllVenueDto)
737
+
738
+
739
+ ### Example
740
+
741
+ ```typescript
742
+ import {
743
+ BusinessApi,
744
+ Configuration,
745
+ GetAllVenueDto
746
+ } from './api';
747
+
748
+ const configuration = new Configuration();
749
+ const apiInstance = new BusinessApi(configuration);
750
+
751
+ let getAllVenueDto: GetAllVenueDto; //
752
+
753
+ const { status, data } = await apiInstance.businessTypeControllerGetAllVenue(
754
+ getAllVenueDto
755
+ );
756
+ ```
757
+
758
+ ### Parameters
759
+
760
+ |Name | Type | Description | Notes|
761
+ |------------- | ------------- | ------------- | -------------|
762
+ | **getAllVenueDto** | **GetAllVenueDto**| | |
763
+
764
+
765
+ ### Return type
766
+
767
+ **BusinessVenueResponseDTO**
768
+
769
+ ### Authorization
770
+
771
+ No authorization required
772
+
773
+ ### HTTP request headers
774
+
775
+ - **Content-Type**: application/json
776
+ - **Accept**: application/json
777
+
778
+
673
779
  ### HTTP response details
674
780
  | Status code | Description | Response headers |
675
781
  |-------------|-------------|------------------|
@@ -721,6 +827,106 @@ const { status, data } = await apiInstance.businessTypeControllerGetBusinessVenu
721
827
  - **Accept**: application/json
722
828
 
723
829
 
830
+ ### HTTP response details
831
+ | Status code | Description | Response headers |
832
+ |-------------|-------------|------------------|
833
+ |**200** | | - |
834
+
835
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
836
+
837
+ # **businessTypeControllerGetFavoriteVenueCount**
838
+ > FavoriteResponseDTO businessTypeControllerGetFavoriteVenueCount()
839
+
840
+
841
+ ### Example
842
+
843
+ ```typescript
844
+ import {
845
+ BusinessApi,
846
+ Configuration
847
+ } from './api';
848
+
849
+ const configuration = new Configuration();
850
+ const apiInstance = new BusinessApi(configuration);
851
+
852
+ let id: string; // (default to undefined)
853
+
854
+ const { status, data } = await apiInstance.businessTypeControllerGetFavoriteVenueCount(
855
+ id
856
+ );
857
+ ```
858
+
859
+ ### Parameters
860
+
861
+ |Name | Type | Description | Notes|
862
+ |------------- | ------------- | ------------- | -------------|
863
+ | **id** | [**string**] | | defaults to undefined|
864
+
865
+
866
+ ### Return type
867
+
868
+ **FavoriteResponseDTO**
869
+
870
+ ### Authorization
871
+
872
+ No authorization required
873
+
874
+ ### HTTP request headers
875
+
876
+ - **Content-Type**: Not defined
877
+ - **Accept**: application/json
878
+
879
+
880
+ ### HTTP response details
881
+ | Status code | Description | Response headers |
882
+ |-------------|-------------|------------------|
883
+ |**200** | | - |
884
+
885
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
886
+
887
+ # **businessTypeControllerGetVenueById**
888
+ > VenueResponseDTO businessTypeControllerGetVenueById()
889
+
890
+
891
+ ### Example
892
+
893
+ ```typescript
894
+ import {
895
+ BusinessApi,
896
+ Configuration
897
+ } from './api';
898
+
899
+ const configuration = new Configuration();
900
+ const apiInstance = new BusinessApi(configuration);
901
+
902
+ let id: string; // (default to undefined)
903
+
904
+ const { status, data } = await apiInstance.businessTypeControllerGetVenueById(
905
+ id
906
+ );
907
+ ```
908
+
909
+ ### Parameters
910
+
911
+ |Name | Type | Description | Notes|
912
+ |------------- | ------------- | ------------- | -------------|
913
+ | **id** | [**string**] | | defaults to undefined|
914
+
915
+
916
+ ### Return type
917
+
918
+ **VenueResponseDTO**
919
+
920
+ ### Authorization
921
+
922
+ No authorization required
923
+
924
+ ### HTTP request headers
925
+
926
+ - **Content-Type**: Not defined
927
+ - **Accept**: application/json
928
+
929
+
724
930
  ### HTTP response details
725
931
  | Status code | Description | Response headers |
726
932
  |-------------|-------------|------------------|
@@ -786,11 +992,18 @@ import {
786
992
  const configuration = new Configuration();
787
993
  const apiInstance = new BusinessApi(configuration);
788
994
 
789
- const { status, data } = await apiInstance.businessTypeControllerListAllCategories();
995
+ let id: string; //Unique identifier for the category (optional) (default to undefined)
996
+
997
+ const { status, data } = await apiInstance.businessTypeControllerListAllCategories(
998
+ id
999
+ );
790
1000
  ```
791
1001
 
792
1002
  ### Parameters
793
- This endpoint does not have any parameters.
1003
+
1004
+ |Name | Type | Description | Notes|
1005
+ |------------- | ------------- | ------------- | -------------|
1006
+ | **id** | [**string**] | Unique identifier for the category | (optional) defaults to undefined|
794
1007
 
795
1008
 
796
1009
  ### Return type
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **date** | **string** | The start date of the booking | [default to 2025-04-29T12:42:47+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-15T12:49:25Z]
10
10
  **from** | **string** | | [optional] [default to undefined]
11
11
  **to** | **string** | | [optional] [default to undefined]
12
12
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -5,11 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **currency** | **string** | Currency in which the payment is made | [default to undefined]
9
- **interval** | **string** | Recurring interval for the payment | [default to undefined]
10
- **amount** | **number** | Amount to be charged in the smallest currency unit (e.g., cents for USD) | [default to undefined]
11
- **name** | **string** | Name of the product or service for which payment is being made | [default to undefined]
12
- **user** | **string** | User Id | [default to undefined]
8
+ **productID** | **string** | Product ID | [default to undefined]
13
9
 
14
10
  ## Example
15
11
 
@@ -17,11 +13,7 @@ Name | Type | Description | Notes
17
13
  import { CreatePaymentLinkDTO } from './api';
18
14
 
19
15
  const instance: CreatePaymentLinkDTO = {
20
- currency,
21
- interval,
22
- amount,
23
- name,
24
- user,
16
+ productID,
25
17
  };
26
18
  ```
27
19
 
@@ -0,0 +1,22 @@
1
+ # FavoriteResponseDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | [**VenueFavoriteCount**](VenueFavoriteCount.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { FavoriteResponseDTO } from './api';
15
+
16
+ const instance: FavoriteResponseDTO = {
17
+ statusCode,
18
+ data,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,36 @@
1
+ # FilterEntity
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **_id** | **string** | Event id | [default to undefined]
9
+ **title** | **string** | Event name | [default to undefined]
10
+ **photos** | **Array<string>** | | [default to undefined]
11
+ **coverPhoto** | **Array<string>** | | [default to undefined]
12
+ **type** | **string** | | [default to undefined]
13
+ **startDate** | **string** | | [default to undefined]
14
+ **endDate** | **string** | | [default to undefined]
15
+ **tags** | [**Array<TagsResponse>**](TagsResponse.md) | | [default to undefined]
16
+ **keyword** | **Array<string>** | | [default to undefined]
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import { FilterEntity } from './api';
22
+
23
+ const instance: FilterEntity = {
24
+ _id,
25
+ title,
26
+ photos,
27
+ coverPhoto,
28
+ type,
29
+ startDate,
30
+ endDate,
31
+ tags,
32
+ keyword,
33
+ };
34
+ ```
35
+
36
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,22 @@
1
+ # FilterEntityResponseDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**Array<FilterEntity>**](FilterEntity.md) | | [default to undefined]
9
+ **statusCode** | **number** | statusCode | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { FilterEntityResponseDTO } from './api';
15
+
16
+ const instance: FilterEntityResponseDTO = {
17
+ data,
18
+ statusCode,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -532,7 +532,7 @@ const { status, data } = await apiInstance.friendControllerSendFriendRequest(
532
532
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
533
533
 
534
534
  # **friendControllerSuggestedFriendList**
535
- > FriendsDTO friendControllerSuggestedFriendList()
535
+ > SuggestionFriendResponseDTO friendControllerSuggestedFriendList()
536
536
 
537
537
 
538
538
  ### Example
@@ -546,16 +546,29 @@ import {
546
546
  const configuration = new Configuration();
547
547
  const apiInstance = new FriendsApi(configuration);
548
548
 
549
- const { status, data } = await apiInstance.friendControllerSuggestedFriendList();
549
+ let search: string; // (optional) (default to undefined)
550
+ let page: number; // (optional) (default to undefined)
551
+ let pageSize: number; // (optional) (default to undefined)
552
+
553
+ const { status, data } = await apiInstance.friendControllerSuggestedFriendList(
554
+ search,
555
+ page,
556
+ pageSize
557
+ );
550
558
  ```
551
559
 
552
560
  ### Parameters
553
- This endpoint does not have any parameters.
561
+
562
+ |Name | Type | Description | Notes|
563
+ |------------- | ------------- | ------------- | -------------|
564
+ | **search** | [**string**] | | (optional) defaults to undefined|
565
+ | **page** | [**number**] | | (optional) defaults to undefined|
566
+ | **pageSize** | [**number**] | | (optional) defaults to undefined|
554
567
 
555
568
 
556
569
  ### Return type
557
570
 
558
- **FriendsDTO**
571
+ **SuggestionFriendResponseDTO**
559
572
 
560
573
  ### Authorization
561
574
 
@@ -0,0 +1,28 @@
1
+ # GetAllVenueDto
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **search** | **string** | Business name search | [optional] [default to undefined]
9
+ **page** | **number** | Page number for pagination | [optional] [default to undefined]
10
+ **limit** | **number** | Number of items per page for pagination | [optional] [default to undefined]
11
+ **people** | **number** | | [optional] [default to undefined]
12
+ **coordinates** | **Array<number>** | | [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { GetAllVenueDto } from './api';
18
+
19
+ const instance: GetAllVenueDto = {
20
+ search,
21
+ page,
22
+ limit,
23
+ people,
24
+ coordinates,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,34 @@
1
+ # GetAllWhatsOnDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **page** | **number** | | [default to undefined]
9
+ **pageSize** | **number** | | [default to undefined]
10
+ **search** | **string** | | [optional] [default to undefined]
11
+ **date** | **string** | | [optional] [default to undefined]
12
+ **toTime** | **string** | | [optional] [default to undefined]
13
+ **coordinates** | **Array<number>** | | [optional] [default to undefined]
14
+ **capacity** | **number** | | [optional] [default to undefined]
15
+ **venue** | **string** | | [optional] [default to undefined]
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import { GetAllWhatsOnDTO } from './api';
21
+
22
+ const instance: GetAllWhatsOnDTO = {
23
+ page,
24
+ pageSize,
25
+ search,
26
+ date,
27
+ toTime,
28
+ coordinates,
29
+ capacity,
30
+ venue,
31
+ };
32
+ ```
33
+
34
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # HomeFeedEntity
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **_id** | **string** | Unique identifier for the assistant | [default to undefined]
9
+ **name** | **string** | | [default to undefined]
10
+ **type** | **string** | | [default to undefined]
11
+ **image** | **string** | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { HomeFeedEntity } from './api';
17
+
18
+ const instance: HomeFeedEntity = {
19
+ _id,
20
+ name,
21
+ type,
22
+ image,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)