package view type ItemViewModel struct { Id string Item string Quantity string Price string SubTotal string PaymentStatus string ItemUrl string Payments []Payment } type Payment struct { Amount string PaymentMethod string PaymentUrl string }