@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 585 B
TypeScript
import { ResponseTypeEnum } from './ResponseTypeEnum';
import { ResponseTrackingOptions } from './ResponseTrackingOptions';
/** A structure describing how to manage an sms Response */
export interface Response {
/** Default url callback used for a given response. */
cgiUrl?: string;
/** */
responseType: ResponseTypeEnum;
/** Automatic notification sent by text in case of customer reply. */
text?: string;
/** */
trackingDefaultSmsSender?: string;
/** */
trackingOptions?: ResponseTrackingOptions[];
}
//# sourceMappingURL=Response.d.ts.map