// Generated Source import MessageStoreCallerInfoRequest from "./MessageStoreCallerInfoRequest"; interface CreatePagerMessageRequest { /** * Sender of a pager message. The extensionNumber property must be filled */ from?: MessageStoreCallerInfoRequest; /** * Internal identifier of a message this message replies to */ replyOn?: number; /** * Text of a pager message. Max length is 1024 symbols (2-byte UTF-16 encoded). If a character is encoded in 4 bytes in UTF-16 it is treated as 2 characters, thus restricting the maximum message length to 512 symbols */ text?: string; /** * Optional if replyOn parameter is specified. Receiver of a pager message. The extensionNumber property must be filled */ to?: MessageStoreCallerInfoRequest[]; } export default CreatePagerMessageRequest;