Versions in this module Expand all Collapse all v0 v0.1.1 Jul 31, 2024 Changes in this version + var ContextAPIKey = contextKey("apikey") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextOAuth2 = contextKey("token") + func CacheExpires(r *http.Response) time.Time + type APIClient struct + WebhooksApi *WebhooksApiService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) ChangeBasePath(path string) + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type Account struct + BaseDate string + BaseTime string + RaAccountNumber string + RaBranchCode string + RaBranchNameKana string + RaHolderName string + RaId string + type BasicAuth struct + Password string + UserName string + type Configuration struct + BasePath string + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + Scheme string + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + type ErrorResponse struct + ErrorCode string + ErrorMessage string + type EventType struct + EventType string + type GenericSwaggerError struct + func (e GenericSwaggerError) Body() []byte + func (e GenericSwaggerError) Error() string + func (e GenericSwaggerError) Model() interface{} + type SubscribeRequestBody struct + EventTypes []EventType + SubscribeStatus string + type VaDepositTransactionMessage struct + Account *Account + MessageId string + Timestamp string + VaTransaction *VaTransaction + type VaDepositTransactionUnsentResponse struct + Messages []VaDepositTransactionMessage + type VaTransaction struct + DepositAmount string + ItemKey string + PartnerName string + PaymentBankName string + PaymentBranchName string + Remarks string + RemitterNameKana string + TransactionDate string + VaAccountNameKana string + VaAccountNumber string + VaBranchCode string + VaBranchNameKana string + VaId string + ValueDate string + type WebhooksApiService service + func (a *WebhooksApiService) AccountsUsing(ctx context.Context, authorization string, body SubscribeRequestBody) (*http.Response, error) + func (a *WebhooksApiService) AccountsUsingGET(ctx context.Context, authorization string) (VaDepositTransactionUnsentResponse, *http.Response, error)