-
Notifications
You must be signed in to change notification settings - Fork 1
/
proforma_invoice_credit.go
70 lines (63 loc) · 2.37 KB
/
proforma_invoice_credit.go
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
package models
import (
"encoding/json"
)
// ProformaInvoiceCredit represents a ProformaInvoiceCredit struct.
type ProformaInvoiceCredit struct {
Uid *string `json:"uid,omitempty"`
Memo *string `json:"memo,omitempty"`
OriginalAmount *string `json:"original_amount,omitempty"`
AppliedAmount *string `json:"applied_amount,omitempty"`
AdditionalProperties map[string]any `json:"_"`
}
// MarshalJSON implements the json.Marshaler interface for ProformaInvoiceCredit.
// It customizes the JSON marshaling process for ProformaInvoiceCredit objects.
func (p ProformaInvoiceCredit) MarshalJSON() (
[]byte,
error) {
return json.Marshal(p.toMap())
}
// toMap converts the ProformaInvoiceCredit object to a map representation for JSON marshaling.
func (p ProformaInvoiceCredit) toMap() map[string]any {
structMap := make(map[string]any)
MapAdditionalProperties(structMap, p.AdditionalProperties)
if p.Uid != nil {
structMap["uid"] = p.Uid
}
if p.Memo != nil {
structMap["memo"] = p.Memo
}
if p.OriginalAmount != nil {
structMap["original_amount"] = p.OriginalAmount
}
if p.AppliedAmount != nil {
structMap["applied_amount"] = p.AppliedAmount
}
return structMap
}
// UnmarshalJSON implements the json.Unmarshaler interface for ProformaInvoiceCredit.
// It customizes the JSON unmarshaling process for ProformaInvoiceCredit objects.
func (p *ProformaInvoiceCredit) UnmarshalJSON(input []byte) error {
var temp proformaInvoiceCredit
err := json.Unmarshal(input, &temp)
if err != nil {
return err
}
additionalProperties, err := UnmarshalAdditionalProperties(input, "uid", "memo", "original_amount", "applied_amount")
if err != nil {
return err
}
p.AdditionalProperties = additionalProperties
p.Uid = temp.Uid
p.Memo = temp.Memo
p.OriginalAmount = temp.OriginalAmount
p.AppliedAmount = temp.AppliedAmount
return nil
}
// proformaInvoiceCredit is a temporary struct used for validating the fields of ProformaInvoiceCredit.
type proformaInvoiceCredit struct {
Uid *string `json:"uid,omitempty"`
Memo *string `json:"memo,omitempty"`
OriginalAmount *string `json:"original_amount,omitempty"`
AppliedAmount *string `json:"applied_amount,omitempty"`
}