/** * Response containing the generated RCS service id and/or url. You can always create a link with the service id that is returned. * To create a link follow the format: sms://{PHONE_NUMBER}?service_id={SERVICE_ID}&body={URL_ENCODED_BODY} */ export interface RcsLinkResult { /** The generated RCS link URL. If no phone number is provided, no url will be generated. */ url?: string; /** The service ID used for the link */ serviceId: string; }