@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 468 B
TypeScript
import { Address } from './Address';
/** Contact definition of a claim notice holder */
export interface Contact {
/** Address of holder */
address: Address;
/** Email address */
email?: string;
/** Legitimacy of holder */
entitlement?: string;
/** Name of claim notice holder */
name?: string;
/** Organisation name */
organisation?: string;
/** Type of contact */
type?: string;
}
//# sourceMappingURL=Contact.d.ts.map