-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsms.ts
47 lines (32 loc) · 1 KB
/
sms.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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import * as Core from '../core';
import * as SMSAPI from './sms';
export class SMS extends APIResource {
list(
query: SMSListParams,
options?: Core.RequestOptions,
): Core.APIPromise<SentDmServicesContractsDataSMSPayloadDto> {
return this._client.get('/sms', { query, ...options });
}
}
export interface SentDmServicesContractsDataSMSPayloadDto {
id?: string;
countryCode?: string;
createdAt?: string;
nationalFormat?: string;
payload?: string;
phoneNumber?: string;
sentId?: string | null;
updatedAt?: string;
validNumber?: boolean;
}
export interface SMSListParams {
phoneNumber: string;
retrieveIfDoesNotExists: boolean;
sentId?: string | null;
}
export namespace SMS {
export import SentDmServicesContractsDataSMSPayloadDto = SMSAPI.SentDmServicesContractsDataSMSPayloadDto;
export import SMSListParams = SMSAPI.SMSListParams;
}