File

src/app/models/planet.model.ts

Description

Pianeta

Extends

Base

Index

Properties

Properties

climate
climate: string
Type : string

Clima

diameter
diameter: string
Type : string

Diametro

films
films: string
Type : string
filmsObj
filmsObj: Film[]
Type : Film[]
gravity
gravity: string
Type : string

Gravità

name
name: string
Type : string

Nome

orbital_period
orbital_period: string
Type : string

Periodo orbitale

population
population: string
Type : string

Popolazione

residents
residents: string
Type : string

elenco dei residenti

residentsObj
residentsObj: People[]
Type : People[]
rotation_period
rotation_period: string
Type : string

Periodo di rotazione

surface_water
surface_water: string
Type : string

Acqua presente

terrain
terrain: string
Type : string

tipo di terreno

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 { Film } from './film.model';
import { People } from './people.model';
/**
 * Pianeta
 */
export class Planet extends Base {
  /**
   * Nome
   */
  name: string;
  /**
   * Clima
   */
  climate: string;
  /**
   * Diametro
   */
  diameter: string;

  films: string;
  filmsObj: Film[];
  /**
   * Gravità
   */
  gravity: string;
  /**
   * Periodo orbitale
   */
  orbital_period: string;
  /**
   * Popolazione
   */
  population: string;
  /**
   * elenco dei residenti
   */
  residents: string;
  residentsObj: People[];
  /**
   * Periodo di rotazione
   */
  rotation_period: string;
  /**
   * Acqua presente
   */
  surface_water: string;

  /**
   * tipo di terreno
   */
  terrain: string;
}

/**
 * Gestione dei campi di dettaglio nella visualizzazione delle popo-up
 */
export const PlanetFields = [
  {
    label: 'Name',
    field: 'name'
  },
  {
    label: 'Climate',
    field: 'climate'
  },

  {
    label: 'Diameter',
    field: 'diameter'
  }
];

results matching ""

    No results matching ""