@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 707 B
TypeScript
import { EncodingEnum } from './EncodingEnum';
/** A structure describing the encoding, length and number of SMS parts of a text message */
export interface JobEstimate {
/** The number of characters the message contains, including invisible escaped characters */
characters: number;
/** The characters class that will be used to send the SMS, depending on characters in message */
charactersClass: EncodingEnum;
/** The number of characters every SMS part can contain, depending on characters class and quantity of parts */
maxCharactersPerPart: number;
/** The quantity of SMS parts the message will be split in */
parts: number;
}
//# sourceMappingURL=JobEstimate.d.ts.map