UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

30 lines 600 B
/** All components of an address */ export interface AddressDetail { /** */ building?: string; /** */ city: string; /** */ door?: string; /** */ firstName: string; /** */ floor?: string; /** Identifier of the city */ inseeCode: string; /** */ lastName: string; /** */ numberStreet: string; /** */ residence?: string; /** Identifier of the street */ rivoliCode: string; /** */ stairs?: string; /** */ street: string; /** */ zipCode: string; } //# sourceMappingURL=AddressDetail.d.ts.map