File

src/app/models/starship.model.ts

Description

Oggetto per le navi da battaglia

Extends

Macchine

Index

Properties

Properties

hyperdrive_rating
hyperdrive_rating: string
Type : string

Rating di velocità

starship_class
starship_class: string
Type : string

Classe della nava

cargo_capacity
cargo_capacity: string
Type : string
Inherited from Macchine
Defined in Macchine:41

Capacità di carico

cost_in_credits
cost_in_credits: string
Type : string
Inherited from Macchine
Defined in Macchine:21

Costo in crediti

crew
crew: string
Type : string
Inherited from Macchine
Defined in Macchine:25

Equipaggio

length
length: string
Type : string
Inherited from Macchine
Defined in Macchine:33

Dimensione

manufacturer
manufacturer: string
Type : string
Inherited from Macchine
Defined in Macchine:37

Prodotto

max_atmosphering_speed
max_atmosphering_speed: string
Type : string
Inherited from Macchine
Defined in Macchine:29

Massima velocità in atmosfera

model
model: string
Type : string
Inherited from Macchine
Defined in Macchine:13

Modelli

name
name: string
Type : string
Inherited from Macchine
Defined in Macchine:9

Identificativo

passengers
passengers: string
Type : string
Inherited from Macchine
Defined in Macchine:17

Numero di passegger

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

Data Creazione

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

Data Modifica

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

Url di riferimento dell'object

import { Macchine } from './macchine.model';
/**
 * Oggetto per le navi da battaglia
 */
export class Starship extends Macchine {
  /**
   * Classe della nava
   */
  starship_class: string;
  /**
   * Rating di velocità
   */
  hyperdrive_rating: string;
}

/**
 * Oggetti per la gestione dello lookup in visualizzazione
 */
export const StartShipFields = [
  {
    label: 'Name',
    field: 'name'
  },

  {
    label: 'Cargo Capacity',
    field: 'cargo_capacity'
  },

  {
    label: 'Consumables',
    field: 'consumables'
  },

  {
    label: 'Cost in Credits',
    field: 'cost_in_credits'
  },

  {
    label: 'Crew',
    field: 'crew'
  },
  {
    label: 'Hyperdrive rating',
    field: 'hyperdrive_rating'
  },

  {
    label: 'Length',
    field: 'length'
  },
  {
    label: 'Manufacturer',
    field: 'manufacturer'
  },
  {
    label: 'Max Atmosphering Speed',
    field: 'max_atmosphering_speed'
  },
  {
    label: 'model',
    field: 'model'
  },
  {
    label: 'Passengers',
    field: 'passengers'
  }
];

results matching ""

    No results matching ""