Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CollateralGurantee ¶
type Comunication ¶
type Correction ¶
type DB ¶
func (*DB) InsertDebtor ¶
type Debt ¶
type Debt struct {
Id string `json:"id"`
Debtor []Debtor `json:"debtor"`
Origin string `json:"origin"`
DocumentID string `json:"documentId"`
ExpirationDate time.Time `json:"expirationDate"`
OriginalValue int `json:"originalValue"`
Fee Fee `json:"fee"`
Interest Interest `json:"interest"`
OtherCharges []OtherCharges `json:"otherCharges"`
PresentValue int `json:"presentValue"`
Collateral []CollateralGurantee `json:"collateral"`
Correction Correction `json:"correction"`
}
type Debtor ¶
type Debtor struct {
Id string `db:"id"`
FiscalDocument string `db:"fiscal_document"`
Name string `db:"name"`
Email string `db:"email"`
TypeOfDebtor string `db:"type_of_debtor"`
PostalCode string `db:"postal_code"`
City string `db:"city"`
Uf string `db:"uf"`
Street string `db:"street"`
Number string `db:"number"`
Complement string `db:"complement"`
}
type OtherCharges ¶
type Propose ¶
type Propose struct {
Id string `json:"id"`
Debt Debt `json:"debt"`
Date time.Time `json:"date"`
Status Status `json:"status"`
ProposeValue int `json:"proposeValue"`
ExpirationDate interface{} `json:"expirationDate"`
PaymentDeadline int `json:"paymentDeadline"`
Payments []Payments `json:"payments"`
Comunication []Comunication `json:"comunication"`
}
Click to show internal directories.
Click to hide internal directories.