I'm currently trying to retrieve price data from the space array inside an Object.
https://i.sstatic.net/v3S3b.png
this.apartmentService.customPackage(this.uid, this.client, this.access_token).subscribe(user => {
this.packages = user;
console.log(this.packages);
})
}
Template File
<ng-container *ngFor="let item of packages?.essential_interiors.space.name | keyvalue">
<li class="list-group-item">{{item.value}}</li>
</ng-container>
However, I'm facing difficulty in fetching a specific space from this response.
Any guidance would be greatly appreciated.