export interface MessagingServiceInfo {
    /**
     * A phone number that is used by service.
     */
    phoneNumber?: string;
    /**
     * A type of the used phone number. Can be Toll-Free or 10DLC.
     */
    phoneNumberType?: string;
    /**
     * Represents an information about limits of sending messages per certain amount of time.
     */
    rateLimits?: string;
}
