Interface: HttpRequestOptions
Defined in: src/http/client.ts:27
Properties
body?
ts
optional body?: unknown;Defined in: src/http/client.ts:34
JSON으로 직렬화되어 전송된다.
headers?
ts
optional headers?: Record<string, string>;Defined in: src/http/client.ts:30
method
ts
method: HttpMethod;Defined in: src/http/client.ts:28
path
ts
path: string;Defined in: src/http/client.ts:29
query?
ts
optional query?: Record<string, QueryValue>;Defined in: src/http/client.ts:32
undefined 값은 생략, 배열은 콤마로 조인된다 (예: channelIds).
retry?
ts
optional retry?: boolean;Defined in: src/http/client.ts:36
이 요청에 한해 재시도를 끈다 (기본은 클라이언트 설정을 따름).