export interface TransactionalSMSSendParams {
    /**
     * A reference to a FHIR Patient, RelatedPerson, or Practitioner resource in the format: `Patient/some-uuid`, `RelatedPerson/some-uuid`, or `Practitioner/some-uuid`.
     */
    resource: string;
    /**
     * The message to send. Messages over 160 characters will be split into multiple SMS messages.
     */
    message: string;
}
