@@ -31,9 +31,11 @@ To call this endpoint with buyer-level permissions, set `APPOINTMENTS_READ` for
3131To call this endpoint with seller-level permissions, set ` APPOINTMENTS_ALL_READ ` and ` APPOINTMENTS_READ ` for the OAuth scope.
3232
3333``` ts
34- async listBookingCustomAttributeDefinitions ( limit ?: number ,
34+ async listBookingCustomAttributeDefinitions (
35+ limit ?: number ,
3536 cursor ?: string ,
36- requestOptions ?: RequestOptions ): Promise < ApiResponse < ListBookingCustomAttributeDefinitionsResponse >>
37+ requestOptions ?: RequestOptions
38+ ): Promise < ApiResponse < ListBookingCustomAttributeDefinitionsResponse >>
3739```
3840
3941## Parameters
@@ -75,8 +77,10 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
7577or * Appointments Premium* .
7678
7779``` ts
78- async createBookingCustomAttributeDefinition ( body : CreateBookingCustomAttributeDefinitionRequest ,
79- requestOptions ?: RequestOptions ): Promise < ApiResponse < CreateBookingCustomAttributeDefinitionResponse >>
80+ async createBookingCustomAttributeDefinition (
81+ body : CreateBookingCustomAttributeDefinitionRequest ,
82+ requestOptions ?: RequestOptions
83+ ): Promise < ApiResponse < CreateBookingCustomAttributeDefinitionResponse >>
8084```
8185
8286## Parameters
@@ -94,7 +98,8 @@ requestOptions?: RequestOptions): Promise<ApiResponse<CreateBookingCustomAttribu
9498
9599``` ts
96100const body: CreateBookingCustomAttributeDefinitionRequest = {
97- customAttributeDefinition: {},
101+ customAttributeDefinition: {
102+ },
98103};
99104
100105try {
@@ -121,8 +126,10 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
121126or * Appointments Premium* .
122127
123128``` ts
124- async deleteBookingCustomAttributeDefinition ( key : string ,
125- requestOptions ?: RequestOptions ): Promise < ApiResponse < DeleteBookingCustomAttributeDefinitionResponse >>
129+ async deleteBookingCustomAttributeDefinition (
130+ key : string ,
131+ requestOptions ?: RequestOptions
132+ ): Promise < ApiResponse < DeleteBookingCustomAttributeDefinitionResponse >>
126133```
127134
128135## Parameters
@@ -162,9 +169,11 @@ To call this endpoint with buyer-level permissions, set `APPOINTMENTS_READ` for
162169To call this endpoint with seller-level permissions, set ` APPOINTMENTS_ALL_READ ` and ` APPOINTMENTS_READ ` for the OAuth scope.
163170
164171``` ts
165- async retrieveBookingCustomAttributeDefinition ( key : string ,
172+ async retrieveBookingCustomAttributeDefinition (
173+ key : string ,
166174 version ?: number ,
167- requestOptions ?: RequestOptions ): Promise < ApiResponse < RetrieveBookingCustomAttributeDefinitionResponse >>
175+ requestOptions ?: RequestOptions
176+ ): Promise < ApiResponse < RetrieveBookingCustomAttributeDefinitionResponse >>
168177```
169178
170179## Parameters
@@ -208,9 +217,11 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
208217or * Appointments Premium* .
209218
210219``` ts
211- async updateBookingCustomAttributeDefinition ( key : string ,
220+ async updateBookingCustomAttributeDefinition (
221+ key : string ,
212222 body : UpdateBookingCustomAttributeDefinitionRequest ,
213- requestOptions ?: RequestOptions ): Promise < ApiResponse < UpdateBookingCustomAttributeDefinitionResponse >>
223+ requestOptions ?: RequestOptions
224+ ): Promise < ApiResponse < UpdateBookingCustomAttributeDefinitionResponse >>
214225```
215226
216227## Parameters
@@ -231,7 +242,8 @@ requestOptions?: RequestOptions): Promise<ApiResponse<UpdateBookingCustomAttribu
231242const key = ' key0' ;
232243
233244const body: UpdateBookingCustomAttributeDefinitionRequest = {
234- customAttributeDefinition: {},
245+ customAttributeDefinition: {
246+ },
235247};
236248
237249try {
@@ -261,8 +273,10 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
261273or * Appointments Premium* .
262274
263275``` ts
264- async bulkDeleteBookingCustomAttributes ( body : BulkDeleteBookingCustomAttributesRequest ,
265- requestOptions ?: RequestOptions ): Promise < ApiResponse < BulkDeleteBookingCustomAttributesResponse >>
276+ async bulkDeleteBookingCustomAttributes (
277+ body : BulkDeleteBookingCustomAttributesRequest ,
278+ requestOptions ?: RequestOptions
279+ ): Promise < ApiResponse < BulkDeleteBookingCustomAttributesResponse >>
266280```
267281
268282## Parameters
@@ -316,8 +330,10 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
316330or * Appointments Premium* .
317331
318332``` ts
319- async bulkUpsertBookingCustomAttributes ( body : BulkUpsertBookingCustomAttributesRequest ,
320- requestOptions ?: RequestOptions ): Promise < ApiResponse < BulkUpsertBookingCustomAttributesResponse >>
333+ async bulkUpsertBookingCustomAttributes (
334+ body : BulkUpsertBookingCustomAttributesRequest ,
335+ requestOptions ?: RequestOptions
336+ ): Promise < ApiResponse < BulkUpsertBookingCustomAttributesResponse >>
321337```
322338
323339## Parameters
@@ -338,11 +354,13 @@ const body: BulkUpsertBookingCustomAttributesRequest = {
338354 values: {
339355 ' key0' : {
340356 bookingId: ' booking_id4' ,
341- customAttribute: {},
357+ customAttribute: {
358+ },
342359 },
343360 ' key1' : {
344361 bookingId: ' booking_id4' ,
345- customAttribute: {},
362+ customAttribute: {
363+ },
346364 }
347365 },
348366};
@@ -368,11 +386,13 @@ To call this endpoint with buyer-level permissions, set `APPOINTMENTS_READ` for
368386To call this endpoint with seller-level permissions, set ` APPOINTMENTS_ALL_READ ` and ` APPOINTMENTS_READ ` for the OAuth scope.
369387
370388``` ts
371- async listBookingCustomAttributes ( bookingId : string ,
389+ async listBookingCustomAttributes (
390+ bookingId : string ,
372391 limit ?: number ,
373392 cursor ?: string ,
374393 withDefinitions ?: boolean ,
375- requestOptions ?: RequestOptions ): Promise < ApiResponse < ListBookingCustomAttributesResponse >>
394+ requestOptions ?: RequestOptions
395+ ): Promise < ApiResponse < ListBookingCustomAttributesResponse >>
376396```
377397
378398## Parameters
@@ -425,9 +445,11 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
425445or * Appointments Premium* .
426446
427447``` ts
428- async deleteBookingCustomAttribute ( bookingId : string ,
448+ async deleteBookingCustomAttribute (
449+ bookingId : string ,
429450 key : string ,
430- requestOptions ?: RequestOptions ): Promise < ApiResponse < DeleteBookingCustomAttributeResponse >>
451+ requestOptions ?: RequestOptions
452+ ): Promise < ApiResponse < DeleteBookingCustomAttributeResponse >>
431453```
432454
433455## Parameters
@@ -473,11 +495,13 @@ To call this endpoint with buyer-level permissions, set `APPOINTMENTS_READ` for
473495To call this endpoint with seller-level permissions, set ` APPOINTMENTS_ALL_READ ` and ` APPOINTMENTS_READ ` for the OAuth scope.
474496
475497``` ts
476- async retrieveBookingCustomAttribute ( bookingId : string ,
498+ async retrieveBookingCustomAttribute (
499+ bookingId : string ,
477500 key : string ,
478501 withDefinition ?: boolean ,
479502 version ?: number ,
480- requestOptions ?: RequestOptions ): Promise < ApiResponse < RetrieveBookingCustomAttributeResponse >>
503+ requestOptions ?: RequestOptions
504+ ): Promise < ApiResponse < RetrieveBookingCustomAttributeResponse >>
481505```
482506
483507## Parameters
@@ -531,10 +555,12 @@ For calls to this endpoint with seller-level permissions to succeed, the seller
531555or * Appointments Premium* .
532556
533557``` ts
534- async upsertBookingCustomAttribute ( bookingId : string ,
558+ async upsertBookingCustomAttribute (
559+ bookingId : string ,
535560 key : string ,
536561 body : UpsertBookingCustomAttributeRequest ,
537- requestOptions ?: RequestOptions ): Promise < ApiResponse < UpsertBookingCustomAttributeResponse >>
562+ requestOptions ?: RequestOptions
563+ ): Promise < ApiResponse < UpsertBookingCustomAttributeResponse >>
538564```
539565
540566## Parameters
@@ -558,7 +584,8 @@ const bookingId = 'booking_id4';
558584const key = ' key0' ;
559585
560586const body: UpsertBookingCustomAttributeRequest = {
561- customAttribute: {},
587+ customAttribute: {
588+ },
562589};
563590
564591try {
0 commit comments