@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 344 B
TypeScript
/** Phone book */
export interface Phonebook {
/** Identifier of the phonebook */
bookKey: string;
/** Set if phonebook is readonly */
isReadonly: boolean;
/** Phonebook name */
name: string;
/** Phone key identifier between the phone and phonebooks */
phoneKey: string;
}
//# sourceMappingURL=Phonebook.d.ts.map