@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 333 B
TypeScript
/** Details of a street */
export interface Street {
/** Street alternative code, a possible alternative identifier of the street */
streetAltCode?: string;
/** Street code, an unique identifier of the street */
streetCode: string;
/** Street name */
streetName: string;
}
//# sourceMappingURL=Street.d.ts.map