cloudways-js-client
Version:
A client library to power your applications with Cloudways API
23 lines (18 loc) • 448 B
text/typescript
/**
* Interface representing the response structure for creating DNS records.
*/
export interface DnsResponse {
wildcard_ssl: {
message: string;
status: boolean;
wildcard: {
app_prefix: string;
auto: boolean;
is_installed: boolean;
is_verified: boolean;
ssl_domains: string[];
ssl_email: string;
type: string;
};
};
}