File

src/app/interfaces/photographer-profile.ts

Description

Photographer profile interface

Index

Properties

Properties

about
about: string
Type : string

About

address
address: Address
Type : Address

Address

email
email: string
Type : string

Email

facebook
facebook: string
Type : string

Facebook

instagram
instagram: string
Type : string

Instagram

location
location: literal type
Type : literal type

Location

name
name: string
Type : string

Name

phone
phone: string
Type : string

Phone

photoUrl
photoUrl: string
Type : string

Photo URL

premium
premium: boolean
Type : boolean

Premium user

profileUrl
profileUrl: string
Type : string

ProfileUrl

tumbler
tumbler: string
Type : string

Tumbler

twitter
twitter: string
Type : string

Twitter

uid
uid: string
Type : string

UID

website
website: string
Type : string

Website

import { Address } from './address';

/**
 * Photographer profile interface
 * @author Daniel Sogl
 */
export interface PhotographerProfile {
  /** About */
  about?: string;
  /** Address */
  address?: Address;
  /** Email */
  email?: string;
  /** Facebook */
  facebook?: string;
  /** Instagram */
  instagram?: string;
  /** Location */
  location: {
    /** Latitute */
    lat: number;
    /** Longitude */
    lng: number;
  };
  /** Name */
  name?: string;
  /** Phone */
  phone?: string;
  /** Photo URL */
  photoUrl?: string;
  /** Premium user */
  premium: boolean;
  /** Tumbler */
  tumbler?: string;
  /** Twitter */
  twitter?: string;
  /** UID */
  uid?: string;
  /** Website */
  website?: string;
  /** ProfileUrl */
  profileUrl: string;
}

results matching ""

    No results matching ""