@oystehr/sdk
Version:
Oystehr SDK
14 lines (13 loc) • 330 B
TypeScript
/**
* Successfully retrieved fax service configuration.
*/
export interface FaxGetConfigurationResponse {
/**
* True if the project is configured with the fax service.
*/
configured: boolean;
/**
* An array of fax numbers assigned to your project in E.164 format.
*/
faxNumbers?: string[];
}