src/app/interfaces/photographer-profile.ts
Photographer profile interface
Properties |
about |
about:
|
Type : string
|
Defined in src/app/interfaces/photographer-profile.ts:9
|
About |
address |
address:
|
Type : Address
|
Address |
email:
|
Type : string
|
|
facebook:
|
Type : string
|
|
instagram:
|
Type : string
|
|
location |
location:
|
Type : literal type
|
Location |
name |
name:
|
Type : string
|
Name |
phone |
phone:
|
Type : string
|
Phone |
photoUrl |
photoUrl:
|
Type : string
|
Photo URL |
premium |
premium:
|
Type : boolean
|
Premium user |
profileUrl |
profileUrl:
|
Type : string
|
ProfileUrl |
tumbler |
tumbler:
|
Type : string
|
Tumbler |
twitter:
|
Type : string
|
|
uid |
uid:
|
Type : string
|
UID |
website |
website:
|
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;
}