UNPKG

@ingestkorea/client-sens

Version:

INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.

17 lines (16 loc) 928 B
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler"; import { SensCommand, GetAlimtalkResultInput, GetAlimtalkResultOutput, MetadataBearer } from "../models"; import { SensClientResolvedConfig } from "../SensClient"; export interface GetAlimtalkResultCommandInput extends GetAlimtalkResultInput { } export interface GetAlimtalkResultCommandOutput extends GetAlimtalkResultOutput, MetadataBearer { } export declare class GetAlimtalkResultCommand extends SensCommand<GetAlimtalkResultCommandInput, GetAlimtalkResultCommandOutput, SensClientResolvedConfig> { input: GetAlimtalkResultCommandInput; constructor(input: GetAlimtalkResultCommandInput); serialize(input: GetAlimtalkResultCommandInput, config: SensClientResolvedConfig): Promise<HttpRequest>; deserialize(response: { response: HttpResponse; output: MetadataBearer; }): Promise<GetAlimtalkResultCommandOutput>; }