-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomers.ts
64 lines (45 loc) · 1.64 KB
/
customers.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import * as Core from '../core';
import * as CustomersAPI from './customers';
export class Customers extends APIResource {
retrieve(
id: string,
options?: Core.RequestOptions,
): Core.APIPromise<SentDmServicesContractsDataCustomerDto> {
return this._client.get(`/customers/${id}`, options);
}
update(
id: string,
body: CustomerUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<SentDmServicesContractsDataCustomerDto> {
return this._client.put(`/customers/${id}`, { body, ...options });
}
delete(id: string, options?: Core.RequestOptions): Core.APIPromise<unknown> {
return this._client.delete(`/customers/${id}`, options);
}
}
export interface SentDmServicesContractsDataCustomerDto {
id?: string;
createdAt?: string;
name?: string;
sendingPhoneNumber?: string;
smsBearerToken?: string;
smsDefaultWebhookUrl?: string;
smsMessagingProfileId?: string;
smsWebhookFailoverUrl?: string;
updatedAt?: string;
whatsappBusinessAssociateId?: string;
whatsappPhoneNumberId?: string;
whatsappSystemUserAccessToken?: string;
}
export type CustomerDeleteResponse = unknown;
export interface CustomerUpdateParams {
customer?: SentDmServicesContractsDataCustomerDto;
}
export namespace Customers {
export import SentDmServicesContractsDataCustomerDto = CustomersAPI.SentDmServicesContractsDataCustomerDto;
export import CustomerDeleteResponse = CustomersAPI.CustomerDeleteResponse;
export import CustomerUpdateParams = CustomersAPI.CustomerUpdateParams;
}