1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// SalesCreditMemo undocumented
type SalesCreditMemo struct {
// Entity is the base model of SalesCreditMemo
Entity
// Number undocumented
Number *string `json:"number,omitempty"`
// ExternalDocumentNumber undocumented
ExternalDocumentNumber *string `json:"externalDocumentNumber,omitempty"`
// CreditMemoDate undocumented
CreditMemoDate *Date `json:"creditMemoDate,omitempty"`
// DueDate undocumented
DueDate *Date `json:"dueDate,omitempty"`
// CustomerID undocumented
CustomerID *UUID `json:"customerId,omitempty"`
// CustomerNumber undocumented
CustomerNumber *string `json:"customerNumber,omitempty"`
// CustomerName undocumented
CustomerName *string `json:"customerName,omitempty"`
// BillToName undocumented
BillToName *string `json:"billToName,omitempty"`
// BillToCustomerID undocumented
BillToCustomerID *UUID `json:"billToCustomerId,omitempty"`
// BillToCustomerNumber undocumented
BillToCustomerNumber *string `json:"billToCustomerNumber,omitempty"`
// SellingPostalAddress undocumented
SellingPostalAddress *PostalAddressType `json:"sellingPostalAddress,omitempty"`
// BillingPostalAddress undocumented
BillingPostalAddress *PostalAddressType `json:"billingPostalAddress,omitempty"`
// CurrencyID undocumented
CurrencyID *UUID `json:"currencyId,omitempty"`
// CurrencyCode undocumented
CurrencyCode *string `json:"currencyCode,omitempty"`
// PaymentTermsID undocumented
PaymentTermsID *UUID `json:"paymentTermsId,omitempty"`
// Salesperson undocumented
Salesperson *string `json:"salesperson,omitempty"`
// PricesIncludeTax undocumented
PricesIncludeTax *bool `json:"pricesIncludeTax,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// TotalAmountExcludingTax undocumented
TotalAmountExcludingTax *int `json:"totalAmountExcludingTax,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// TotalAmountIncludingTax undocumented
TotalAmountIncludingTax *int `json:"totalAmountIncludingTax,omitempty"`
// Status undocumented
Status *string `json:"status,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// InvoiceID undocumented
InvoiceID *UUID `json:"invoiceId,omitempty"`
// InvoiceNumber undocumented
InvoiceNumber *string `json:"invoiceNumber,omitempty"`
// PhoneNumber undocumented
PhoneNumber *string `json:"phoneNumber,omitempty"`
// Email undocumented
Email *string `json:"email,omitempty"`
// SalesCreditMemoLines undocumented
SalesCreditMemoLines []SalesCreditMemoLine `json:"salesCreditMemoLines,omitempty"`
// Customer undocumented
Customer *Customer `json:"customer,omitempty"`
// Currency undocumented
Currency *Currency `json:"currency,omitempty"`
// PaymentTerm undocumented
PaymentTerm *PaymentTerm `json:"paymentTerm,omitempty"`
}
// SalesCreditMemoLine undocumented
type SalesCreditMemoLine struct {
// Entity is the base model of SalesCreditMemoLine
Entity
// DocumentID undocumented
DocumentID *UUID `json:"documentId,omitempty"`
// Sequence undocumented
Sequence *int `json:"sequence,omitempty"`
// ItemID undocumented
ItemID *UUID `json:"itemId,omitempty"`
// AccountID undocumented
AccountID *UUID `json:"accountId,omitempty"`
// LineType undocumented
LineType *string `json:"lineType,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// UnitOfMeasureID undocumented
UnitOfMeasureID *UUID `json:"unitOfMeasureId,omitempty"`
// UnitPrice undocumented
UnitPrice *int `json:"unitPrice,omitempty"`
// Quantity undocumented
Quantity *int `json:"quantity,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountPercent undocumented
DiscountPercent *int `json:"discountPercent,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// AmountExcludingTax undocumented
AmountExcludingTax *int `json:"amountExcludingTax,omitempty"`
// TaxCode undocumented
TaxCode *string `json:"taxCode,omitempty"`
// TaxPercent undocumented
TaxPercent *int `json:"taxPercent,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// AmountIncludingTax undocumented
AmountIncludingTax *int `json:"amountIncludingTax,omitempty"`
// InvoiceDiscountAllocation undocumented
InvoiceDiscountAllocation *int `json:"invoiceDiscountAllocation,omitempty"`
// NetAmount undocumented
NetAmount *int `json:"netAmount,omitempty"`
// NetTaxAmount undocumented
NetTaxAmount *int `json:"netTaxAmount,omitempty"`
// NetAmountIncludingTax undocumented
NetAmountIncludingTax *int `json:"netAmountIncludingTax,omitempty"`
// ShipmentDate undocumented
ShipmentDate *Date `json:"shipmentDate,omitempty"`
// Item undocumented
Item *Item `json:"item,omitempty"`
// Account undocumented
Account *Account `json:"account,omitempty"`
}
// SalesInvoice undocumented
type SalesInvoice struct {
// Entity is the base model of SalesInvoice
Entity
// Number undocumented
Number *string `json:"number,omitempty"`
// ExternalDocumentNumber undocumented
ExternalDocumentNumber *string `json:"externalDocumentNumber,omitempty"`
// InvoiceDate undocumented
InvoiceDate *Date `json:"invoiceDate,omitempty"`
// DueDate undocumented
DueDate *Date `json:"dueDate,omitempty"`
// CustomerPurchaseOrderReference undocumented
CustomerPurchaseOrderReference *string `json:"customerPurchaseOrderReference,omitempty"`
// CustomerID undocumented
CustomerID *UUID `json:"customerId,omitempty"`
// CustomerNumber undocumented
CustomerNumber *string `json:"customerNumber,omitempty"`
// CustomerName undocumented
CustomerName *string `json:"customerName,omitempty"`
// BillToName undocumented
BillToName *string `json:"billToName,omitempty"`
// BillToCustomerID undocumented
BillToCustomerID *UUID `json:"billToCustomerId,omitempty"`
// BillToCustomerNumber undocumented
BillToCustomerNumber *string `json:"billToCustomerNumber,omitempty"`
// ShipToName undocumented
ShipToName *string `json:"shipToName,omitempty"`
// ShipToContact undocumented
ShipToContact *string `json:"shipToContact,omitempty"`
// SellingPostalAddress undocumented
SellingPostalAddress *PostalAddressType `json:"sellingPostalAddress,omitempty"`
// BillingPostalAddress undocumented
BillingPostalAddress *PostalAddressType `json:"billingPostalAddress,omitempty"`
// ShippingPostalAddress undocumented
ShippingPostalAddress *PostalAddressType `json:"shippingPostalAddress,omitempty"`
// CurrencyID undocumented
CurrencyID *UUID `json:"currencyId,omitempty"`
// CurrencyCode undocumented
CurrencyCode *string `json:"currencyCode,omitempty"`
// OrderID undocumented
OrderID *UUID `json:"orderId,omitempty"`
// OrderNumber undocumented
OrderNumber *string `json:"orderNumber,omitempty"`
// PaymentTermsID undocumented
PaymentTermsID *UUID `json:"paymentTermsId,omitempty"`
// ShipmentMethodID undocumented
ShipmentMethodID *UUID `json:"shipmentMethodId,omitempty"`
// Salesperson undocumented
Salesperson *string `json:"salesperson,omitempty"`
// PricesIncludeTax undocumented
PricesIncludeTax *bool `json:"pricesIncludeTax,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// TotalAmountExcludingTax undocumented
TotalAmountExcludingTax *int `json:"totalAmountExcludingTax,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// TotalAmountIncludingTax undocumented
TotalAmountIncludingTax *int `json:"totalAmountIncludingTax,omitempty"`
// Status undocumented
Status *string `json:"status,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// PhoneNumber undocumented
PhoneNumber *string `json:"phoneNumber,omitempty"`
// Email undocumented
Email *string `json:"email,omitempty"`
// SalesInvoiceLines undocumented
SalesInvoiceLines []SalesInvoiceLine `json:"salesInvoiceLines,omitempty"`
// Customer undocumented
Customer *Customer `json:"customer,omitempty"`
// Currency undocumented
Currency *Currency `json:"currency,omitempty"`
// PaymentTerm undocumented
PaymentTerm *PaymentTerm `json:"paymentTerm,omitempty"`
// ShipmentMethod undocumented
ShipmentMethod *ShipmentMethod `json:"shipmentMethod,omitempty"`
}
// SalesInvoiceLine undocumented
type SalesInvoiceLine struct {
// Entity is the base model of SalesInvoiceLine
Entity
// DocumentID undocumented
DocumentID *UUID `json:"documentId,omitempty"`
// Sequence undocumented
Sequence *int `json:"sequence,omitempty"`
// ItemID undocumented
ItemID *UUID `json:"itemId,omitempty"`
// AccountID undocumented
AccountID *UUID `json:"accountId,omitempty"`
// LineType undocumented
LineType *string `json:"lineType,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// UnitOfMeasureID undocumented
UnitOfMeasureID *UUID `json:"unitOfMeasureId,omitempty"`
// UnitPrice undocumented
UnitPrice *int `json:"unitPrice,omitempty"`
// Quantity undocumented
Quantity *int `json:"quantity,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountPercent undocumented
DiscountPercent *int `json:"discountPercent,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// AmountExcludingTax undocumented
AmountExcludingTax *int `json:"amountExcludingTax,omitempty"`
// TaxCode undocumented
TaxCode *string `json:"taxCode,omitempty"`
// TaxPercent undocumented
TaxPercent *int `json:"taxPercent,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// AmountIncludingTax undocumented
AmountIncludingTax *int `json:"amountIncludingTax,omitempty"`
// InvoiceDiscountAllocation undocumented
InvoiceDiscountAllocation *int `json:"invoiceDiscountAllocation,omitempty"`
// NetAmount undocumented
NetAmount *int `json:"netAmount,omitempty"`
// NetTaxAmount undocumented
NetTaxAmount *int `json:"netTaxAmount,omitempty"`
// NetAmountIncludingTax undocumented
NetAmountIncludingTax *int `json:"netAmountIncludingTax,omitempty"`
// ShipmentDate undocumented
ShipmentDate *Date `json:"shipmentDate,omitempty"`
// Item undocumented
Item *Item `json:"item,omitempty"`
// Account undocumented
Account *Account `json:"account,omitempty"`
}
// SalesOrder undocumented
type SalesOrder struct {
// Entity is the base model of SalesOrder
Entity
// Number undocumented
Number *string `json:"number,omitempty"`
// ExternalDocumentNumber undocumented
ExternalDocumentNumber *string `json:"externalDocumentNumber,omitempty"`
// OrderDate undocumented
OrderDate *Date `json:"orderDate,omitempty"`
// CustomerID undocumented
CustomerID *UUID `json:"customerId,omitempty"`
// CustomerNumber undocumented
CustomerNumber *string `json:"customerNumber,omitempty"`
// CustomerName undocumented
CustomerName *string `json:"customerName,omitempty"`
// BillToName undocumented
BillToName *string `json:"billToName,omitempty"`
// BillToCustomerID undocumented
BillToCustomerID *UUID `json:"billToCustomerId,omitempty"`
// BillToCustomerNumber undocumented
BillToCustomerNumber *string `json:"billToCustomerNumber,omitempty"`
// ShipToName undocumented
ShipToName *string `json:"shipToName,omitempty"`
// ShipToContact undocumented
ShipToContact *string `json:"shipToContact,omitempty"`
// SellingPostalAddress undocumented
SellingPostalAddress *PostalAddressType `json:"sellingPostalAddress,omitempty"`
// BillingPostalAddress undocumented
BillingPostalAddress *PostalAddressType `json:"billingPostalAddress,omitempty"`
// ShippingPostalAddress undocumented
ShippingPostalAddress *PostalAddressType `json:"shippingPostalAddress,omitempty"`
// CurrencyID undocumented
CurrencyID *UUID `json:"currencyId,omitempty"`
// CurrencyCode undocumented
CurrencyCode *string `json:"currencyCode,omitempty"`
// PricesIncludeTax undocumented
PricesIncludeTax *bool `json:"pricesIncludeTax,omitempty"`
// PaymentTermsID undocumented
PaymentTermsID *UUID `json:"paymentTermsId,omitempty"`
// Salesperson undocumented
Salesperson *string `json:"salesperson,omitempty"`
// PartialShipping undocumented
PartialShipping *bool `json:"partialShipping,omitempty"`
// RequestedDeliveryDate undocumented
RequestedDeliveryDate *Date `json:"requestedDeliveryDate,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// TotalAmountExcludingTax undocumented
TotalAmountExcludingTax *int `json:"totalAmountExcludingTax,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// TotalAmountIncludingTax undocumented
TotalAmountIncludingTax *int `json:"totalAmountIncludingTax,omitempty"`
// FullyShipped undocumented
FullyShipped *bool `json:"fullyShipped,omitempty"`
// Status undocumented
Status *string `json:"status,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// PhoneNumber undocumented
PhoneNumber *string `json:"phoneNumber,omitempty"`
// Email undocumented
Email *string `json:"email,omitempty"`
// SalesOrderLines undocumented
SalesOrderLines []SalesOrderLine `json:"salesOrderLines,omitempty"`
// Customer undocumented
Customer *Customer `json:"customer,omitempty"`
// Currency undocumented
Currency *Currency `json:"currency,omitempty"`
// PaymentTerm undocumented
PaymentTerm *PaymentTerm `json:"paymentTerm,omitempty"`
}
// SalesOrderLine undocumented
type SalesOrderLine struct {
// Entity is the base model of SalesOrderLine
Entity
// DocumentID undocumented
DocumentID *UUID `json:"documentId,omitempty"`
// Sequence undocumented
Sequence *int `json:"sequence,omitempty"`
// ItemID undocumented
ItemID *UUID `json:"itemId,omitempty"`
// AccountID undocumented
AccountID *UUID `json:"accountId,omitempty"`
// LineType undocumented
LineType *string `json:"lineType,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// UnitOfMeasureID undocumented
UnitOfMeasureID *UUID `json:"unitOfMeasureId,omitempty"`
// Quantity undocumented
Quantity *int `json:"quantity,omitempty"`
// UnitPrice undocumented
UnitPrice *int `json:"unitPrice,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountPercent undocumented
DiscountPercent *int `json:"discountPercent,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// AmountExcludingTax undocumented
AmountExcludingTax *int `json:"amountExcludingTax,omitempty"`
// TaxCode undocumented
TaxCode *string `json:"taxCode,omitempty"`
// TaxPercent undocumented
TaxPercent *int `json:"taxPercent,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// AmountIncludingTax undocumented
AmountIncludingTax *int `json:"amountIncludingTax,omitempty"`
// InvoiceDiscountAllocation undocumented
InvoiceDiscountAllocation *int `json:"invoiceDiscountAllocation,omitempty"`
// NetAmount undocumented
NetAmount *int `json:"netAmount,omitempty"`
// NetTaxAmount undocumented
NetTaxAmount *int `json:"netTaxAmount,omitempty"`
// NetAmountIncludingTax undocumented
NetAmountIncludingTax *int `json:"netAmountIncludingTax,omitempty"`
// ShipmentDate undocumented
ShipmentDate *Date `json:"shipmentDate,omitempty"`
// ShippedQuantity undocumented
ShippedQuantity *int `json:"shippedQuantity,omitempty"`
// InvoicedQuantity undocumented
InvoicedQuantity *int `json:"invoicedQuantity,omitempty"`
// InvoiceQuantity undocumented
InvoiceQuantity *int `json:"invoiceQuantity,omitempty"`
// ShipQuantity undocumented
ShipQuantity *int `json:"shipQuantity,omitempty"`
// Item undocumented
Item *Item `json:"item,omitempty"`
// Account undocumented
Account *Account `json:"account,omitempty"`
}
// SalesQuote undocumented
type SalesQuote struct {
// Entity is the base model of SalesQuote
Entity
// Number undocumented
Number *string `json:"number,omitempty"`
// ExternalDocumentNumber undocumented
ExternalDocumentNumber *string `json:"externalDocumentNumber,omitempty"`
// DocumentDate undocumented
DocumentDate *Date `json:"documentDate,omitempty"`
// DueDate undocumented
DueDate *Date `json:"dueDate,omitempty"`
// CustomerID undocumented
CustomerID *UUID `json:"customerId,omitempty"`
// CustomerNumber undocumented
CustomerNumber *string `json:"customerNumber,omitempty"`
// CustomerName undocumented
CustomerName *string `json:"customerName,omitempty"`
// BillToName undocumented
BillToName *string `json:"billToName,omitempty"`
// BillToCustomerID undocumented
BillToCustomerID *UUID `json:"billToCustomerId,omitempty"`
// BillToCustomerNumber undocumented
BillToCustomerNumber *string `json:"billToCustomerNumber,omitempty"`
// ShipToName undocumented
ShipToName *string `json:"shipToName,omitempty"`
// ShipToContact undocumented
ShipToContact *string `json:"shipToContact,omitempty"`
// SellingPostalAddress undocumented
SellingPostalAddress *PostalAddressType `json:"sellingPostalAddress,omitempty"`
// BillingPostalAddress undocumented
BillingPostalAddress *PostalAddressType `json:"billingPostalAddress,omitempty"`
// ShippingPostalAddress undocumented
ShippingPostalAddress *PostalAddressType `json:"shippingPostalAddress,omitempty"`
// CurrencyID undocumented
CurrencyID *UUID `json:"currencyId,omitempty"`
// CurrencyCode undocumented
CurrencyCode *string `json:"currencyCode,omitempty"`
// PaymentTermsID undocumented
PaymentTermsID *UUID `json:"paymentTermsId,omitempty"`
// ShipmentMethodID undocumented
ShipmentMethodID *UUID `json:"shipmentMethodId,omitempty"`
// Salesperson undocumented
Salesperson *string `json:"salesperson,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// TotalAmountExcludingTax undocumented
TotalAmountExcludingTax *int `json:"totalAmountExcludingTax,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// TotalAmountIncludingTax undocumented
TotalAmountIncludingTax *int `json:"totalAmountIncludingTax,omitempty"`
// Status undocumented
Status *string `json:"status,omitempty"`
// SentDate undocumented
SentDate *time.Time `json:"sentDate,omitempty"`
// ValidUntilDate undocumented
ValidUntilDate *Date `json:"validUntilDate,omitempty"`
// AcceptedDate undocumented
AcceptedDate *Date `json:"acceptedDate,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// PhoneNumber undocumented
PhoneNumber *string `json:"phoneNumber,omitempty"`
// Email undocumented
Email *string `json:"email,omitempty"`
// SalesQuoteLines undocumented
SalesQuoteLines []SalesQuoteLine `json:"salesQuoteLines,omitempty"`
// Customer undocumented
Customer *Customer `json:"customer,omitempty"`
// Currency undocumented
Currency *Currency `json:"currency,omitempty"`
// PaymentTerm undocumented
PaymentTerm *PaymentTerm `json:"paymentTerm,omitempty"`
// ShipmentMethod undocumented
ShipmentMethod *ShipmentMethod `json:"shipmentMethod,omitempty"`
}
// SalesQuoteLine undocumented
type SalesQuoteLine struct {
// Entity is the base model of SalesQuoteLine
Entity
// DocumentID undocumented
DocumentID *UUID `json:"documentId,omitempty"`
// Sequence undocumented
Sequence *int `json:"sequence,omitempty"`
// ItemID undocumented
ItemID *UUID `json:"itemId,omitempty"`
// AccountID undocumented
AccountID *UUID `json:"accountId,omitempty"`
// LineType undocumented
LineType *string `json:"lineType,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// UnitOfMeasureID undocumented
UnitOfMeasureID *UUID `json:"unitOfMeasureId,omitempty"`
// UnitPrice undocumented
UnitPrice *int `json:"unitPrice,omitempty"`
// Quantity undocumented
Quantity *int `json:"quantity,omitempty"`
// DiscountAmount undocumented
DiscountAmount *int `json:"discountAmount,omitempty"`
// DiscountPercent undocumented
DiscountPercent *int `json:"discountPercent,omitempty"`
// DiscountAppliedBeforeTax undocumented
DiscountAppliedBeforeTax *bool `json:"discountAppliedBeforeTax,omitempty"`
// AmountExcludingTax undocumented
AmountExcludingTax *int `json:"amountExcludingTax,omitempty"`
// TaxCode undocumented
TaxCode *string `json:"taxCode,omitempty"`
// TaxPercent undocumented
TaxPercent *int `json:"taxPercent,omitempty"`
// TotalTaxAmount undocumented
TotalTaxAmount *int `json:"totalTaxAmount,omitempty"`
// AmountIncludingTax undocumented
AmountIncludingTax *int `json:"amountIncludingTax,omitempty"`
// NetAmount undocumented
NetAmount *int `json:"netAmount,omitempty"`
// NetTaxAmount undocumented
NetTaxAmount *int `json:"netTaxAmount,omitempty"`
// NetAmountIncludingTax undocumented
NetAmountIncludingTax *int `json:"netAmountIncludingTax,omitempty"`
// Item undocumented
Item *Item `json:"item,omitempty"`
// Account undocumented
Account *Account `json:"account,omitempty"`
}
|