src/app/core/models/address.ts
Properties |
| address_line_1 |
address_line_1:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:10
|
| address_line_2 |
address_line_2:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:11
|
| alternative_phone |
alternative_phone:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:16
|
| city |
city:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:12
|
| company |
company:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:15
|
| country |
country:
|
Type : Country
|
|
Defined in src/app/core/models/address.ts:22
|
| country_id |
country_id:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:17
|
| first_name |
first_name:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:7
|
| full_name |
full_name:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:9
|
| id |
id:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:6
|
| last_name |
last_name:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:8
|
| phone |
phone:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:14
|
| Optional state |
state:
|
Type : CState
|
|
Defined in src/app/core/models/address.ts:21
|
| state_id |
state_id:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:18
|
| state_name |
state_name:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:19
|
| state_text |
state_text:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:20
|
| zip_code |
zip_code:
|
Type : string
|
|
Defined in src/app/core/models/address.ts:13
|
import { CState } from './state';
import { Country } from './country';
export class Address {
id: string;
first_name: string;
last_name: string;
full_name: string;
address_line_1: string;
address_line_2: string;
city: string;
zip_code: string;
phone: string;
company: string;
alternative_phone: string;
country_id: string;
state_id: string;
state_name: string;
state_text: string;
state?: CState;
country: Country;
}