File

src/app/models/specie.model.ts

Description

Oggetto di specifica delle specie

Extends

Base

Index

Properties

Properties

average_height
average_height: string
Type : string

altezza media

average_lifespan
average_lifespan: string
Type : string

Vita massima

classification
classification: string
Type : string

Classificazione

designation
designation: string
Type : string

Destino

eye_colors
eye_colors: string
Type : string

colore degli occhi

films
films: string
Type : string

elenco film url

filmsObj
filmsObj: Film[]
Type : Film[]

elenco film obj

hair_colors
hair_colors: string
Type : string

colore dei capelli

homeworld
homeworld: string
Type : string

Casa natale url

homeworldObj
homeworldObj: Planet
Type : Planet

Casa natale obj

language
language: string
Type : string

Lingua

name
name: string
Type : string

Nome

people
people: string
Type : string

elenco personaggi

peoplesObj
peoplesObj: People[]
Type : People[]

elenco personaggi Obj

skin_colors
skin_colors: string
Type : string

colore della pelle

created
created: string
Type : string
Inherited from Base
Defined in Base:12

Data Creazione

edited
edited: string
Type : string
Inherited from Base
Defined in Base:16

Data Modifica

url
url: string
Type : string
Inherited from Base
Defined in Base:8

Url di riferimento dell'object

import { Base } from './base.model';
import { Planet } from './planet.model';
import { People } from './people.model';
import { Film } from './film.model';

/**
 * Oggetto di specifica delle specie
 */
export class Specie extends Base {
  /**
   * Nome
   */
  name: string;

  /**
   * altezza media
   */
  average_height: string;

  /**
   * Vita massima
   */
  average_lifespan: string;
  /**
   * Classificazione
   */
  classification: string;

  /**
   * Destino
   */
  designation: string;
  /**
   * colore della pelle
   */
  skin_colors: string;

  /**
   * colore degli occhi
   */
  eye_colors: string;
  /**
   * colore dei capelli
   */
  hair_colors: string;

  /**
   * Casa natale url
   */
  homeworld: string;
  /**
   * Casa natale obj
   */
  homeworldObj: Planet;

  /**
   * Lingua
   */
  language: string;

  /**
   * elenco personaggi
   */
  people: string;
  /**
   * elenco personaggi Obj
   */
  peoplesObj: People[];

  /**
   * elenco film url
   */
  films: string;
  /**
   * elenco film obj
   */

  filmsObj: Film[];
}

export const SpecieFields = [
  { label: 'Name', field: 'name' },
  { label: 'Average Height', field: 'average_height' },
  { label: 'Average Lifespan', field: 'average_lifespan' },
  { label: 'Classificazione', field: 'classification' },
  { label: 'Designation', field: 'designation' },
  { label: 'Eye colors', field: 'eye_colors' },
  { label: 'Hair colors', field: 'hair_colors' },
  { label: 'Skin Colors', field: 'skin_colors' },
  { label: 'Language', field: 'language' }
];

results matching ""

    No results matching ""