projects/ngx-neshan/src/lib/models/ns-reverse-result.ts
Properties |
| addresses |
Type : NsAddress[]
|
| city |
Type : string
|
| formatted_address |
Type : string
|
| in_odd_even_zone |
Type : boolean
|
| in_traffic_zone |
Type : boolean
|
| municipality_zone |
Type : string
|
| neighbourhood |
Type : string
|
| Optional place |
Type : any
|
| route_name |
Type : string
|
| route_type |
Type : string
|
| state |
Type : string
|
| status |
Type : string
|
import { NsAddress } from './ns-address';
export class NsReverseResult {
status: string;
formatted_address: string;
route_name: string;
route_type: string;
neighbourhood: string;
city: string;
state: string;
place?: any;
municipality_zone: string;
in_traffic_zone: boolean;
in_odd_even_zone: boolean;
addresses: NsAddress[];
}