File

src/app/core/models/address.ts

Index

Properties

Properties

address_line_1
address_line_1: string
Type : string
address_line_2
address_line_2: string
Type : string
alternative_phone
alternative_phone: string
Type : string
city
city: string
Type : string
company
company: string
Type : string
country
country: Country
Type : Country
country_id
country_id: string
Type : string
first_name
first_name: string
Type : string
full_name
full_name: string
Type : string
id
id: string
Type : string
last_name
last_name: string
Type : string
phone
phone: string
Type : string
Optional state
state: CState
Type : CState
state_id
state_id: string
Type : string
state_name
state_name: string
Type : string
state_text
state_text: string
Type : string
zip_code
zip_code: string
Type : string
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;
}

results matching ""

    No results matching ""