Discover Packages
github.com/awafinance/fiscal
pkg
info
package
Version:
v0.1.1
Opens a new window with list of versions in this module.
Published: Apr 17, 2026
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type AdditionalInformation interface {
GetAdditionalInfo() string
}
type Amount struct {
Type string `json:"type,omitempty"`
Value string `json:"value,omitempty"`
}
type AmountsInfo interface {
GetAmounts() []Amount
}
type Billing struct {
Invoice *Invoice `json:"invoice,omitempty"`
Duplicates []Duplicata `json:"duplicates,omitempty"`
}
type BillingInfo interface {
GetBilling() *Billing
GetDuplicatas() []Duplicata
}
type Duplicata struct {
Number string `json:"number,omitempty"`
DueDate string `json:"dueDate,omitempty"`
Amount string `json:"amount,omitempty"`
}
type Invoice struct {
Number string `json:"number,omitempty"`
OrigAmount string `json:"origAmount,omitempty"`
Discount string `json:"discount,omitempty"`
NetAmount string `json:"netAmount,omitempty"`
}
type Location struct {
CountryCode string `json:"countryCode,omitempty"`
State string `json:"state,omitempty"`
CityCode string `json:"cityCode,omitempty"`
CityName string `json:"cityName,omitempty"`
}
type PartiesInfo interface {
GetParties() []Party
}
type Party struct {
Role string `json:"role,omitempty"`
Name string `json:"name,omitempty"`
Document string `json:"document,omitempty"`
}
type Payment struct {
Method string `json:"method,omitempty"`
Amount string `json:"amount,omitempty"`
Date string `json:"date,omitempty"`
PayerDocument string `json:"payerDocument,omitempty"`
ReceiverDocument string `json:"receiverDocument,omitempty"`
}
type PaymentsInfo interface {
GetPayments() []Payment
}
type RelatedDocument struct {
Type string `json:"type,omitempty"`
AccessKey string `json:"accessKey,omitempty"`
Number string `json:"number,omitempty"`
Series string `json:"series,omitempty"`
}
type RelatedDocumentsInfo interface {
GetRelatedDocuments() []RelatedDocument
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.