Advertisement
RemcoE33

Discord help

Feb 11th, 2023
1,435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.06 KB | None | 0 0
  1. package appconnector
  2.  
  3. // DO NOT EDIT BY HAND
  4. import "time"
  5.  
  6. type RootFbPurch struct {
  7.     FbPurch struct {
  8.         Element struct {
  9.             Fields struct {
  10.                 Number      string    `json:"OrNu"`
  11.                 Date        time.Time `json:"OrDa"`
  12.                 Relation    string    `json:"CrId"`
  13.                 Description string    `json:"Ds"`
  14.             } `json:"Fields"`
  15.         } `json:"Element"`
  16.         Objects []struct {
  17.             FbPurchFbPurchLines []FbPurchFbPurchLines `json:"FbPurchLines"`
  18.         } `json:"Objects"`
  19.     } `json:"FbPurch"`
  20. }
  21.  
  22. type FbPurchFbPurchLines struct {
  23.     Element []struct {
  24.         Fields struct {
  25.             TypeItem    string `json:"VaIt"`
  26.             Itemcode    string `json:"ItCd"`
  27.             Description string `json:"Ds"`
  28.         } `json:"Fields"`
  29.     } `json:"Element"`
  30.     Objects []struct {
  31.         FbPurchFbOrderBatchLines  []FbPurchFbOrderBatchLines  `json:"FbOrderBatchLines"`
  32.     } `json:"Objects"`
  33. }
  34.  
  35. type FbPurchFbOrderBatchLines struct {
  36.     Element []struct {
  37.         Fields struct {
  38.             Batchnumber string  `json:"BaNu"`
  39.             Unit        string  `json:"BiUn"`
  40.             Quantity    float64 `json:"QuUn"`
  41.         } `json:"Fields"`
  42.     } `json:"Element"`
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement