@ingestkorea/client-sens
Version:
INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.
17 lines (16 loc) • 954 B
TypeScript
import { HttpRequest, HttpResponse } from "@ingestkorea/util-http-handler";
import { SensCommand, GetAlimtalkTemplateInput, GetAlimtalkTemplateOutput, MetadataBearer } from "../models";
import { SensClientResolvedConfig } from "../SensClient";
export interface GetAlimtalkTemplateCommandInput extends GetAlimtalkTemplateInput {
}
export interface GetAlimtalkTemplateCommandOutput extends GetAlimtalkTemplateOutput, MetadataBearer {
}
export declare class GetAlimtalkTemplateCommand extends SensCommand<GetAlimtalkTemplateCommandInput, GetAlimtalkTemplateCommandOutput, SensClientResolvedConfig> {
input: GetAlimtalkTemplateCommandInput;
constructor(input: GetAlimtalkTemplateCommandInput);
serialize(input: GetAlimtalkTemplateCommandInput, config: SensClientResolvedConfig): Promise<HttpRequest>;
deserialize(response: {
response: HttpResponse;
output: MetadataBearer;
}): Promise<GetAlimtalkTemplateCommandOutput>;
}