Documentation ¶
Index ¶
- func IsJsonErrorStatusCode(err error, statusCode int) bool
- func JsonErrorPrettyPrint(err error) string
- func NewUUID() *strfmt.UUID
- func NewUUIDValue() strfmt.UUID
- func String(v string) *string
- func StringValue(v *string) string
- func UUID(s strfmt.UUID) *strfmt.UUID
- func UUIDValue(s *strfmt.UUID) strfmt.UUID
- func UUIDtoStrFmtUUID(s uuid.UUID) *strfmt.UUID
- type AuthenticatedClient
- type AuthenticatedClientCheckRedirect
- type CachedToken
- type JsonError
- type LoginResponse
- type PaymentBuilder
- func (b *PaymentBuilder) Build() *models.Payment
- func (b *PaymentBuilder) NewMessageID() string
- func (b *PaymentBuilder) NewSchemeTransactionID() string
- func (b *PaymentBuilder) WithAmount(amount string) *PaymentBuilder
- func (b *PaymentBuilder) WithBeneficiaryPartyAccountNumber(accountNumber string) *PaymentBuilder
- func (b *PaymentBuilder) WithBeneficiaryPartyAccountWithBankID(bankID string) *PaymentBuilder
- func (b *PaymentBuilder) WithDebtorPartyAccountNumber(accountNumber string) *PaymentBuilder
- func (b *PaymentBuilder) WithDebtorPartyAccountWithBankID(bankID string) *PaymentBuilder
- func (b *PaymentBuilder) WithDefaults() *PaymentBuilder
- func (b *PaymentBuilder) WithOrganisationID(id strfmt.UUID) *PaymentBuilder
- func (b *PaymentBuilder) WithPaymentScheme(scheme string) *PaymentBuilder
- func (b *PaymentBuilder) WithReference(reference string) *PaymentBuilder
- func (b *PaymentBuilder) WithSchemePaymentType(schemePaymentType string) *PaymentBuilder
- func (b *PaymentBuilder) WithSchemeTransactionID(schemeTransactionID string) *PaymentBuilder
- type ReadSeekerCloser
- type ReadSeekerCloserImpl
- type Request
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsJsonErrorStatusCode ¶ added in v0.43.0
func JsonErrorPrettyPrint ¶ added in v0.43.0
func NewUUIDValue ¶
func StringValue ¶
StringValue returns the value of the string pointer passed in or "" if the pointer is nil.
Types ¶
type AuthenticatedClient ¶
type AuthenticatedClient struct { AccessToken string SecurityClient *client.Form3CorelibDataStructures NotificationClient *client.Form3CorelibDataStructures Config *client.TransportConfig HttpClient *http.Client OrganisationId string OrganisationClient *client.Form3CorelibDataStructures AssociationClient *client.Form3CorelibDataStructures AccountClient *client.Form3CorelibDataStructures LimitsClient *client.Form3CorelibDataStructures PaymentdefaultsClient *client.Form3CorelibDataStructures TransactionClient *client.Form3CorelibDataStructures SystemClient *client.Form3CorelibDataStructures PlatformClient *client.Form3CorelibDataStructures }
func NewAuthenticatedClient ¶
func NewAuthenticatedClient(config *client.TransportConfig) *AuthenticatedClient
func (*AuthenticatedClient) Authenticate ¶
func (r *AuthenticatedClient) Authenticate(clientId string, clientSecret string) error
type AuthenticatedClientCheckRedirect ¶
type AuthenticatedClientCheckRedirect struct { }
func (*AuthenticatedClientCheckRedirect) CheckRedirect ¶
type CachedToken ¶
type JsonError ¶ added in v0.43.0
JsonError represents an error in json format it is a ApiError wrapper
type LoginResponse ¶
type PaymentBuilder ¶
type PaymentBuilder struct {
// contains filtered or unexported fields
}
func (*PaymentBuilder) Build ¶
func (b *PaymentBuilder) Build() *models.Payment
func (*PaymentBuilder) NewMessageID ¶
func (b *PaymentBuilder) NewMessageID() string
func (*PaymentBuilder) NewSchemeTransactionID ¶
func (b *PaymentBuilder) NewSchemeTransactionID() string
func (*PaymentBuilder) WithAmount ¶
func (b *PaymentBuilder) WithAmount(amount string) *PaymentBuilder
func (*PaymentBuilder) WithBeneficiaryPartyAccountNumber ¶
func (b *PaymentBuilder) WithBeneficiaryPartyAccountNumber(accountNumber string) *PaymentBuilder
func (*PaymentBuilder) WithBeneficiaryPartyAccountWithBankID ¶
func (b *PaymentBuilder) WithBeneficiaryPartyAccountWithBankID(bankID string) *PaymentBuilder
func (*PaymentBuilder) WithDebtorPartyAccountNumber ¶
func (b *PaymentBuilder) WithDebtorPartyAccountNumber(accountNumber string) *PaymentBuilder
func (*PaymentBuilder) WithDebtorPartyAccountWithBankID ¶
func (b *PaymentBuilder) WithDebtorPartyAccountWithBankID(bankID string) *PaymentBuilder
func (*PaymentBuilder) WithDefaults ¶
func (b *PaymentBuilder) WithDefaults() *PaymentBuilder
func (*PaymentBuilder) WithOrganisationID ¶
func (b *PaymentBuilder) WithOrganisationID(id strfmt.UUID) *PaymentBuilder
func (*PaymentBuilder) WithPaymentScheme ¶
func (b *PaymentBuilder) WithPaymentScheme(scheme string) *PaymentBuilder
func (*PaymentBuilder) WithReference ¶
func (b *PaymentBuilder) WithReference(reference string) *PaymentBuilder
func (*PaymentBuilder) WithSchemePaymentType ¶
func (b *PaymentBuilder) WithSchemePaymentType(schemePaymentType string) *PaymentBuilder
func (*PaymentBuilder) WithSchemeTransactionID ¶
func (b *PaymentBuilder) WithSchemeTransactionID(schemeTransactionID string) *PaymentBuilder
type ReadSeekerCloser ¶ added in v0.32.0
type ReadSeekerCloser interface { io.ReadSeeker io.Closer }
func NewReaderSeekerCloser ¶ added in v0.32.0
func NewReaderSeekerCloser(request *http.Request) (ReadSeekerCloser, error)
type ReadSeekerCloserImpl ¶ added in v0.32.0
type ReadSeekerCloserImpl struct { ReadSeeker io.ReadSeeker Closer io.Closer }
func (*ReadSeekerCloserImpl) Close ¶ added in v0.32.0
func (r *ReadSeekerCloserImpl) Close() error
Click to show internal directories.
Click to hide internal directories.