HomeVendure CoreShow hidden breadcrumbs...ComponentsObjectTreeComponentOn this pageObjectTreeComponent@vendure/admin-uiSource This component displays a plain JavaScript object as an expandable tree. Example HTML<vdr-object-tree [value]="payment.metadata"></vdr-object-tree> Signatureclass ObjectTreeComponent implements OnChanges { @Input() value: { [key: string]: any } | string; @Input() isArrayItem = false; depth: number; expanded: boolean; valueIsArray: boolean; entries: Array<{ key: string; value: any }>; constructor(parent: ObjectTreeComponent) ngOnChanges() => ; isObject(value: any) => boolean;} Implements: OnChanges valueproperty{ [key: string]: any } | stringisArrayItempropertydepthpropertynumberexpandedpropertybooleanvalueIsArraypropertybooleanentriespropertyArray<{ key: string; value: any }>ngOnChangesmethod() => isObjectmethod(value: any) => booleanWas this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousFacetValueSelectorComponentNextOrderStateLabelComponentEdited Apr 20, 2026ยทEdit this page