This is my angle class 2
export class LinhaModel {
_id: string;
Cidade: {
id: string;
CidadeNome: string;
}
Operador: {
id: string,
OperadorNome: string,
}
DiaOperacional: {
id: string,
DiaOperacionalNome: string,
}
CategoriaLinha: {
id: string,
CategoriaLinhaNome: string,
}
Acessibilidade: boolean
Tarifa: number
NomeLinha: string
CodigoLinha: string
ViagemA: {
Origem: string
Destino: string
Horarios: any[]
Vias: [
{
ViaNome: string
ViaHorarios: any[]
}
]
}
ViagemB: {
Origem: string
Destino: string
Horarios: any
Vias: [
{
ViaNome: string
ViaHorarios: any
}
]
}
}
I'm instantiating my model so
private model: LineModel = new LineModel ();
And when I try to access my property with this.model.Travel.Annex is not accepted! Anyone know how to do this?