Discord Help

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package appconnector

// DO NOT EDIT BY HAND


import "time"

type RootFbPurch struct {


FbPurch struct {
Element struct {
Fields struct {
Number string `json:"OrNu"`
Date time.Time `json:"OrDa"`
Relation string `json:"CrId"`
Description string `json:"Ds"`
} `json:"Fields"`
} `json:"Element"`
Objects []struct {
FbPurchFbPurchLines []FbPurchFbPurchLines `json:"FbPurchLines"`
} `json:"Objects"`
} `json:"FbPurch"`
}

type FbPurchFbPurchLines struct {


Element []struct {
Fields struct {
TypeItem string `json:"VaIt"`
Itemcode string `json:"ItCd"`
Description string `json:"Ds"`
} `json:"Fields"`
} `json:"Element"`
Objects []struct {
FbPurchFbOrderBatchLines []FbPurchFbOrderBatchLines
`json:"FbOrderBatchLines"`
} `json:"Objects"`
}

type FbPurchFbOrderBatchLines struct {


Element []struct {
Fields struct {
Batchnumber string `json:"BaNu"`
Unit string `json:"BiUn"`
Quantity float64 `json:"QuUn"`
} `json:"Fields"`
} `json:"Element"`
}

You might also like