File

src/app/interfaces/address.ts

Description

Address interface

Index

Properties

Properties

city
city: string
Type : string

City

company
company: string
Type : string

Company

email
email: string
Type : string

Email

lastname
lastname: string
Type : string

Lastname

name
name: string
Type : string

Name

phone
phone: string
Type : string

Phone

street
street: string
Type : string

Street

streetnumber
streetnumber: string
Type : string

Street number

zip
zip: string
Type : string

ZIP

export interface Address {
  /** City */
  city: string;
  /** Company */
  company?: string;
  /** Email */
  email: string;
  /** Name */
  name?: string;
  /** Lastname */
  lastname?: string;
  /** Phone */
  phone: string;
  /** Street */
  street: string;
  /** Street number */
  streetnumber: string;
  /** ZIP */
  zip: string;
}

results matching ""

    No results matching ""