Documentation
¶
Overview ¶
Package mollie is a wrapper around Mollie's REST API.
See: https://www.mollie.com/en/developers
The Mollie API implements a Representational state transfer (REST) architecture.
Sounds technical, but it’s really quite easy. It mainly breaks down to HTTP-methods GET, PATCH, POST and DELETE matching the operations to read, update, create and delete.
REST also implies a nice and clean structure for URLs or endpoints. This means you can reach any part of the Mollie API on https://api.mollie.com/v2/ adding the name of the resource you want to interact with.
Index ¶
- Constants
- func CheckResponse(r *http.Response) error
- type Address
- type Amount
- type ApplePaymentSession
- type ApplePaymentSessionRequest
- type ApplicationFee
- type Capture
- type CaptureLinks
- type CapturesList
- type CapturesService
- type CardLabel
- type CategoryCode
- type Chargeback
- type ChargebackLinks
- type ChargebackList
- type ChargebackOptions
- type ChargebacksService
- func (cs *ChargebacksService) Get(paymentID, chargebackID string, options *ChargebackOptions) (p Chargeback, err error)
- func (cs *ChargebacksService) List(options *ListChargebackOptions) (cl *ChargebackList, err error)
- func (cs *ChargebacksService) ListForPayment(paymentID string, options *ListChargebackOptions) (cl *ChargebackList, err error)
- type Client
- type Config
- type CreateShipmentRequest
- type Customer
- type CustomerLinks
- type CustomersList
- type CustomersService
- func (cs *CustomersService) Create(c Customer) (cc *Customer, err error)
- func (cs *CustomersService) CreatePayment(id string, p Payment) (pp *Payment, err error)
- func (cs *CustomersService) Delete(id string) (err error)
- func (cs *CustomersService) Get(id string) (c *Customer, err error)
- func (cs *CustomersService) GetPayments(id string, options *ListCustomersOptions) (pl *PaymentList, err error)
- func (cs *CustomersService) List(options *ListCustomersOptions) (cl *CustomersList, err error)
- func (cs *CustomersService) Update(id string, c Customer) (cc *Customer, err error)
- type EligibilityReasons
- type EmbedValue
- type Error
- type FailureReason
- type FeeRegion
- type GiftCardEnabled
- type GiftCardIssuer
- type GiftCardIssuerStatus
- type GiftCardLinks
- type Image
- type Invoice
- type InvoiceLinks
- type InvoiceList
- type InvoiceStatus
- type InvoicesService
- type LineItem
- type ListChargebackOptions
- type ListCustomersOptions
- type ListInvoiceOptions
- type ListMandatesOptions
- type ListMethods
- type ListPaymentOptions
- type ListRefundOptions
- type Locale
- type Mandate
- type MandateDetails
- type MandateLinks
- type MandateList
- type MandateStatus
- type MandatesService
- func (ms *MandatesService) Create(cID string, mandate Mandate) (mr *Mandate, err error)
- func (ms *MandatesService) Get(cID, mID string) (mr *Mandate, err error)
- func (ms *MandatesService) List(cID string, opt *ListMandatesOptions) (ml MandateList, err error)
- func (ms *MandatesService) Revoke(cID, mID string) (err error)
- type MethodsLinks
- type MethodsOptions
- type MethodsService
- type MiscellaneousService
- type Mode
- type Order
- type OrderAddress
- type OrderLine
- type OrderLineLinks
- type OrderLineStatus
- type OrderLinks
- type OrderList
- type OrderListOptions
- type OrderListRefund
- type OrderListRefundOptions
- type OrderOptions
- type OrderPayment
- type OrderStatus
- type OrdersService
- func (ors *OrdersService) Cancel(orderID string) (order *Order, err error)
- func (ors *OrdersService) CancelOrderLines(orderID string, orderLines []OrderLine) (err error)
- func (ors *OrdersService) Create(ord Order, opt *OrderOptions) (order *Order, err error)
- func (ors *OrdersService) CreateOrderPayment(orderID string, ordPay *OrderPayment) (payment *Payment, err error)
- func (ors *OrdersService) CreateOrderRefund(orderID string, order *Order) (refund Refund, err error)
- func (ors *OrdersService) Get(orID string, opt *OrderOptions) (order *Order, err error)
- func (ors *OrdersService) List(opt *OrderListOptions) (ordList *OrderList, err error)
- func (ors *OrdersService) ListOrderRefunds(orderID string, opt *OrderListRefundOptions) (orderListRefund OrderListRefund, err error)
- func (ors *OrdersService) Update(orderID string, ord Order) (order *Order, err error)
- func (ors *OrdersService) UpdateOrderLine(orderID string, orderLineID string, orderLine OrderLine) (order *Order, err error)
- type Organization
- type OrganizationLinks
- type OrganizationsService
- type PaginationLinks
- type Payment
- type PaymentDetails
- type PaymentLinks
- type PaymentList
- type PaymentMethod
- type PaymentMethodInfo
- type PaymentMethodPricing
- type PaymentOptions
- type PaymentsService
- func (ps *PaymentsService) Cancel(id string) (p Payment, err error)
- func (ps *PaymentsService) Create(p Payment) (np Payment, err error)
- func (ps *PaymentsService) Get(id string, options *PaymentOptions) (p Payment, err error)
- func (ps *PaymentsService) List(options *ListPaymentOptions) (pl PaymentList, err error)
- func (ps *PaymentsService) Update(id string, up Payment) (p Payment, err error)
- type PhoneNumber
- type ProductType
- type Profile
- type ProfileLinks
- type ProfileList
- type ProfileListOptions
- type ProfileStatus
- type ProfilesService
- func (ps *ProfilesService) Create(np *Profile) (p *Profile, err error)
- func (ps *ProfilesService) Current() (p *Profile, err error)
- func (ps *ProfilesService) Delete(id string) (err error)
- func (ps *ProfilesService) DisableGiftCardIssuer(profileID string, issuer GiftCardIssuer) (err error)
- func (ps *ProfilesService) DisableGiftCardIssuerForCurrent(issuer GiftCardIssuer) (err error)
- func (ps *ProfilesService) DisablePaymentMethod(id string, pm PaymentMethod) (err error)
- func (ps *ProfilesService) EnableGiftCardIssuer(profileID string, issuer GiftCardIssuer) (gc *GiftCardEnabled, err error)
- func (ps *ProfilesService) EnableGiftCardIssuerForCurrent(issuer GiftCardIssuer) (gc *GiftCardEnabled, err error)
- func (ps *ProfilesService) EnablePaymentMethod(id string, pm PaymentMethod) (pmi *PaymentMethodInfo, err error)
- func (ps *ProfilesService) Get(id string) (p *Profile, err error)
- func (ps *ProfilesService) List(options *ProfileListOptions) (pl *ProfileList, err error)
- func (ps *ProfilesService) Update(id string, up *Profile) (p *Profile, err error)
- type QRCode
- type Rate
- type Refund
- type RefundLinks
- type RefundList
- type RefundOptions
- type RefundStatus
- type RefundsService
- func (rs *RefundsService) Cancel(paymentID, refundID string, options *RefundOptions) (err error)
- func (rs *RefundsService) Create(paymentID string, re Refund, options *RefundOptions) (rf Refund, err error)
- func (rs *RefundsService) Get(paymentID, refundID string, options *RefundOptions) (refund Refund, err error)
- func (rs *RefundsService) ListRefund(options *ListRefundOptions) (rl *RefundList, err error)
- func (rs *RefundsService) ListRefundPayment(paymentID string, options *ListRefundOptions) (rl *RefundList, err error)
- type Response
- type SequenceType
- type Settlement
- type SettlementCosts
- type SettlementLinks
- type SettlementObject
- type SettlementPeriod
- type SettlementRevenue
- type SettlementStatus
- type SettlementsList
- type SettlementsListOptions
- type SettlementsService
- func (ss *SettlementsService) Get(id string) (s *Settlement, err error)
- func (ss *SettlementsService) GetCaptures(id string, slo *SettlementsListOptions) (cl *CapturesList, err error)
- func (ss *SettlementsService) GetChargebacks(id string, slo *SettlementsListOptions) (cl *ChargebackList, err error)
- func (ss *SettlementsService) GetPayments(id string, slo *SettlementsListOptions) (pl *PaymentList, err error)
- func (ss *SettlementsService) GetRefunds(id string, slo *SettlementsListOptions) (rl *RefundList, err error)
- func (ss *SettlementsService) List(slo *SettlementsListOptions) (sl *SettlementsList, err error)
- func (ss *SettlementsService) Next() (s *Settlement, err error)
- func (ss *SettlementsService) Open() (s *Settlement, err error)
- type Shipment
- type ShipmentLinks
- type ShipmentTracking
- type ShipmentsList
- type ShipmentsService
- func (ss *ShipmentsService) Create(oID string, cs CreateShipmentRequest) (s *Shipment, err error)
- func (ss *ShipmentsService) Get(oID string, sID string) (s *Shipment, err error)
- func (ss *ShipmentsService) List(oID string) (sl *ShipmentsList, err error)
- func (ss *ShipmentsService) Update(oID string, sID string, st ShipmentTracking) (s *Shipment, err error)
- type ShortDate
- type Subscription
- type SubscriptionLinks
- type SubscriptionList
- type SubscriptionListOptions
- type SubscriptionStatus
- type SubscriptionsService
- func (ss *SubscriptionsService) All(options *SubscriptionListOptions) (sl *SubscriptionList, err error)
- func (ss *SubscriptionsService) Create(cID string, sc *Subscription) (s *Subscription, err error)
- func (ss *SubscriptionsService) Delete(cID, sID string) (s *Subscription, err error)
- func (ss *SubscriptionsService) Get(cID, sID string) (s *Subscription, err error)
- func (ss *SubscriptionsService) GetPayments(cID, sID string, options *SubscriptionListOptions) (sl *PaymentList, err error)
- func (ss *SubscriptionsService) List(cID string, options *SubscriptionListOptions) (sl *SubscriptionList, err error)
- func (ss *SubscriptionsService) Update(cID, sID string, sc *Subscription) (s *Subscription, err error)
- type URL
- type UsedGiftCard
Examples ¶
Constants ¶
const ( BaseURL string = "https://api.mollie.com/" AuthHeader string = "Authorization" TokenType string = "Bearer" APITokenEnv string = "MOLLIE_API_TOKEN" OrgTokenEnv string = "MOLLIE_ORG_TOKEN" RequestContentType string = "application/json" )
Constants holding values for client initialization and request instantiation.
const ( SettlementStatusOpen = "string" SettlementStatusPending = "pending" SettlementStatusPaidOut = "paidout" SettlementStatusFailed = "failed" )
Available settlement statuses
Variables ¶
This section is empty.
Functions ¶
func CheckResponse ¶
CheckResponse checks the API response for errors, and returns them if present. A response is considered an error if it has a status code outside the 200 range. API error responses are expected to have either no response body, or a JSON response body.
Types ¶
type Address ¶
type Address struct { StreetAndNumber string `json:"streetAndNumber,omitempty"` StreetAdditional string `json:"streetAdditional,omitempty"` PostalCode string `json:"postalCode,omitempty"` City string `json:"city,omitempty"` Region string `json:"region,omitempty"` Country string `json:"country,omitempty"` }
Address provides a human friendly representation of a geographical space.
When providing an address object as parameter to a request, the following conditions must be met:
If any of the fields is provided, all fields have to be provided with exception of the region field. If only the region field is given, one should provide all the other fields as per the previous condition. For certain PayPal payments the region field is required.
type Amount ¶
type Amount struct { Currency string `json:"currency,omitempty"` Value string `json:"value,omitempty"` }
Amount represents a currency and value pair.
type ApplePaymentSession ¶
type ApplePaymentSession struct { EpochTimestamp int `json:"epochTimestamp,omitempty"` ExpiresAt int `json:"expiresAt,omitempty"` MerchantSessionID string `json:"merchantSessionIdentifier,omitempty"` Nonce string `json:"nonce,omitempty"` MerchantID string `json:"merchantIdentified,omitempty"` DomainName string `json:"domainName,omitempty"` DisplayName string `json:"displayName,omitempty"` Signature string `json:"signature,omitempty"` }
ApplePaymentSession contains information about an Apple pay session
type ApplePaymentSessionRequest ¶
type ApplePaymentSessionRequest struct { Domain string `json:"domain,omitempty"` ValidationURL string `json:"validationUrl,omitempty"` }
ApplePaymentSessionRequest contains the body parameters for requesting a valid PaymentSession from Apple.
type ApplicationFee ¶
type ApplicationFee struct { Amount Amount `json:"amount,omitempty"` Description string `json:"description,omitempty"` }
ApplicationFee allows you to split a payment between a platform and connected merchant accounts.
type Capture ¶
type Capture struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Mode Mode `json:"mode,omitempty"` Amount Amount `json:"amount,omitempty"` SettlementAmount Amount `json:"settlementAmount,omitempty"` PaymentID string `json:"paymentId,omitempty"` ShipmentID string `json:"shipmentId,omitempty"` SettlementID string `json:"settlementId,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Links CaptureLinks `json:"links,omitempty"` }
Capture describes a single capture Captures are used for payments that have the authorize-then-capture flow
type CaptureLinks ¶
type CaptureLinks struct { Self URL `json:"self,omitempty"` Payment URL `json:"payment,omitempty"` Shipment URL `json:"shipment,omitempty"` Settlement URL `json:"settlement,omitempty"` Documentation URL `json:"documentation,omitempty"` }
CaptureLinks contains relevant links for a capture object
type CapturesList ¶
type CapturesList struct { Count int `json:"count,omitempty"` Embedded struct { Captures []Capture } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
CapturesList describes a list of captures
type CapturesService ¶
type CapturesService service
CapturesService operates over captures resource
func (*CapturesService) Get ¶
func (cs *CapturesService) Get(pID, cID string) (c *Capture, err error)
Get retrieves a single capture by its ID. Note the original payment’s ID is needed as well.
See: https://docs.mollie.com/reference/v2/captures-api/get-capture
func (*CapturesService) List ¶
func (cs *CapturesService) List(pID string) (cl *CapturesList, err error)
List retrieves all captures for a certain payment
See: https://docs.mollie.com/reference/v2/captures-api/list-captures
type CardLabel ¶ added in v1.2.0
type CardLabel string
CardLabel Note that not all labels can be processed through Mollie.
const ( AmericaExpress CardLabel = "American Express" CartaSi CardLabel = "Carta Si" CarteBleue CardLabel = "Carte Bleue" Dankort CardLabel = "Dankort" DinersClub CardLabel = "Diners Club" Discover CardLabel = "Discover" JCB CardLabel = "JCB" Laser CardLabel = "Laser" Maestro CardLabel = "Maestro" Mastercard CardLabel = "Mastercard" Unionpay CardLabel = "Unionpay" Visa CardLabel = "Visa" Empty CardLabel = "null" )
Available card labels
type CategoryCode ¶
type CategoryCode uint
CategoryCode specifies an industry or category
const ( BookMagazinesAndNewspapers CategoryCode = 5192 GeneralMerchandise CategoryCode = 5399 FoodAndDrinks CategoryCode = 5499 AutomotiveProducts CategoryCode = 5533 ChildrenProducts CategoryCode = 5641 ClothingAndShoes CategoryCode = 5651 ElectronicsComputersAndSoftware CategoryCode = 5732 HostingOrVpnServices CategoryCode = 5734 Entertainment CategoryCode = 5735 CreditsOrVouchersOrGiftCards CategoryCode = 5815 Alcohol CategoryCode = 5921 JewelryAndAccessories CategoryCode = 5944 HealthAndBeautyProducts CategoryCode = 5977 FinancialServices CategoryCode = 6012 Consultancy CategoryCode = 7299 TravelRentalAndTransportation CategoryCode = 7999 AdvisingOrCoachingOrTraining CategoryCode = 8299 CharityAndDonations CategoryCode = 8398 PoliticalParties CategoryCode = 8699 Others CategoryCode = 0 )
Available category codes
type Chargeback ¶
type Chargeback struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Amount Amount `json:"amount,omitempty"` SettlementAmount Amount `json:"settlementAmount,omitempty"` CreatedAt time.Time `json:"createdAt,omitempty"` ReversedAt time.Time `json:"reversedAt,omitempty"` PaymentID string `json:"paymentId,omitempty"` Links ChargebackLinks `json:"_links,omitempty"` }
Chargeback describes a forced transaction reversal initiated by the cardholder's bank
type ChargebackLinks ¶
type ChargebackLinks struct { Self URL `json:"self,omitempty"` Payment URL `json:"payment,omitempty"` Settlement URL `json:"settlement,omitempty"` Documentation URL `json:"documentation,omitempty"` }
ChargebackLinks describes all the possible links to be returned with a chargeback object.
type ChargebackList ¶
type ChargebackList struct { Count int `json:"count,omitempty"` Embedded struct { Chargebacks []Chargeback } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
ChargebackList describes how a list of chargebacks will be retrieved by Mollie.
type ChargebackOptions ¶
type ChargebackOptions struct { Include string `url:"include,omitempty"` Embed string `url:"embed,omitempty"` }
ChargebackOptions describes chargeback endpoint valid query string parameters.
type ChargebacksService ¶
type ChargebacksService service
ChargebacksService instance operates over chargeback resources
func (*ChargebacksService) Get ¶
func (cs *ChargebacksService) Get(paymentID, chargebackID string, options *ChargebackOptions) (p Chargeback, err error)
Get retrieves a single chargeback by its ID. Note the original payment’s ID is needed as well.
See: https://docs.mollie.com/reference/v2/chargebacks-api/get-chargeback
Example ¶
setup() defer teardown() paymentID := "tr_WDqYK6vllg" chargebackID := "chb_n9z0tp" _ = tClient.WithAuthenticationValue("test_token") tMux.HandleFunc("/v2/payments/"+paymentID+"/chargebacks/"+chargebackID, func(w http.ResponseWriter, r *http.Request) { if _, ok := r.Header[AuthHeader]; !ok { w.WriteHeader(http.StatusUnauthorized) } w.WriteHeader(http.StatusOK) _, _ = w.Write([]byte(testdata.GetChargebackResponse)) }) chargeback, err := tClient.Chargebacks.Get(paymentID, chargebackID, nil) if err != nil { log.Fatal(err) } fmt.Println(chargeback.ID)
Output: chb_n9z0tp
func (*ChargebacksService) List ¶
func (cs *ChargebacksService) List(options *ListChargebackOptions) (cl *ChargebackList, err error)
List retrieves a list of chargebacks associated with your account/organization.
See: https://docs.mollie.com/reference/v2/chargebacks-api/list-chargebacks
func (*ChargebacksService) ListForPayment ¶
func (cs *ChargebacksService) ListForPayment(paymentID string, options *ListChargebackOptions) (cl *ChargebackList, err error)
ListForPayment retrieves a list of chargebacks associated with a single payment.
See: https://docs.mollie.com/reference/v2/chargebacks-api/list-chargebacks
type Client ¶
type Client struct { BaseURL *url.URL // Services Payments *PaymentsService Chargebacks *ChargebacksService Methods *MethodsService Invoices *InvoicesService Organizations *OrganizationsService Profiles *ProfilesService Refunds *RefundsService Shipments *ShipmentsService Orders *OrdersService Settlements *SettlementsService Captures *CapturesService Subscriptions *SubscriptionsService Customers *CustomersService Miscellaneous *MiscellaneousService Mandates *MandatesService // contains filtered or unexported fields }
Client manages communication with Mollie's API.
func NewClient ¶
NewClient returns a new Mollie HTTP API client. You can pass a previously build http client, if none is provided then http.DefaultClient will be used.
NewClient will lookup the environment for values to assign to the API token (`MOLLIE_API_TOKEN`) and the Organization token (`MOLLIE_ORG_TOKEN`) according to the provided Config object.
You can also set the token values programmatically by using the Client WithAPIKey and WithOrganizationKey functions.
Example ¶
----- mollie examples -----
// using api token apiTokenClient, err := NewClient(nil, &Config{ testing: false, auth: APITokenEnv, }) if err != nil { return } // using an organization token orgTokenClient, err := NewClient(nil, &Config{ testing: false, auth: OrgTokenEnv, }) if err != nil { return } // using mollie connect oauthConfig := oauth2.Config{ ClientID: "your client id", ClientSecret: "your client secret", Endpoint: connect.Endpoint, } secured := oauthConfig.Client(context.TODO(), nil) config := NewConfig(true, "") oauthClient, err := NewClient(secured, config) if err != nil { return } fmt.Printf("%v\n", apiTokenClient) fmt.Printf("%v\n", orgTokenClient) fmt.Printf("%v\n", oauthClient)
Output:
func (*Client) Do ¶
Do sends an API request and returns the API response or returned as an error if an API error has occurred.
func (*Client) NewAPIRequest ¶
func (c *Client) NewAPIRequest(method string, uri string, body interface{}) (req *http.Request, err error)
NewAPIRequest is a wrapper around the http.NewRequest function.
It will setup the authentication headers/parameters according to the client config.
func (*Client) WithAuthenticationValue ¶
WithAuthenticationValue offers a convenient setter for any of the valid authentication tokens provided by Mollie.
Ideally your API key will be provided from and environment variable or a secret management engine. This should only be used when environment variables are "impossible" to be used.
type Config ¶
type Config struct {
// contains filtered or unexported fields
}
Config contains information that helps during the setup of a new Mollie client.
type CreateShipmentRequest ¶
type CreateShipmentRequest struct { Lines []OrderLine `json:"lines,omitempty"` Tracking ShipmentTracking `json:"tracking,omitempty"` }
CreateShipmentRequest defines information required to create a new shipment
type Customer ¶
type Customer struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Mode Mode `json:"mode,omitempty"` Name string `json:"name,omitempty"` Email string `json:"email,omitempty"` Locale Locale `json:"locale,omitempty"` Metadata map[string]interface{} `json:"metadata,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Links CustomerLinks `json:"_links,omitempty"` }
Customer represents buyers
type CustomerLinks ¶
type CustomerLinks struct { Self *URL `json:"self,omitempty"` Mandates *URL `json:"mandates,omitempty"` Subscriptions *URL `json:"subscriptions,omitempty"` Payments *URL `json:"payments,omitempty"` Documentation *URL `json:"documentation,omitempty"` Dashboard *URL `json:"dashboard,omitempty"` }
CustomerLinks contains the HAL resources for a customer response
type CustomersList ¶
type CustomersList struct { Count int `json:"count,omitempty"` Embedded struct { Customers []Customer `json:"customers,omitempty"` } `json:"_embedded,omitempty"` Links PaginationLinks `json:"links,omitempty"` }
CustomersList contains a embedded list of customers wrapped in a standard Mollie paginated response.
type CustomersService ¶
type CustomersService service
CustomersService operates over the customer resource
func (*CustomersService) Create ¶
func (cs *CustomersService) Create(c Customer) (cc *Customer, err error)
Create creates a simple minimal representation of a customer in the Mollie API to use for the Mollie Checkout and Recurring features
See: https://docs.mollie.com/reference/v2/customers-api/create-customer
func (*CustomersService) CreatePayment ¶
func (cs *CustomersService) CreatePayment(id string, p Payment) (pp *Payment, err error)
CreatePayment creates a payment for the customer.
See: https://docs.mollie.com/reference/v2/customers-api/create-customer-payment
func (*CustomersService) Delete ¶
func (cs *CustomersService) Delete(id string) (err error)
Delete a customer. All mandates and subscriptions created for this customer will be canceled as well.
See: https://docs.mollie.com/reference/v2/customers-api/delete-customer
func (*CustomersService) Get ¶
func (cs *CustomersService) Get(id string) (c *Customer, err error)
Get finds a customer by its ID
See: https://docs.mollie.com/reference/v2/customers-api/get-customer
func (*CustomersService) GetPayments ¶
func (cs *CustomersService) GetPayments(id string, options *ListCustomersOptions) (pl *PaymentList, err error)
GetPayments retrieves all payments linked to the customer.
See: https://docs.mollie.com/reference/v2/customers-api/list-customer-payments
func (*CustomersService) List ¶
func (cs *CustomersService) List(options *ListCustomersOptions) (cl *CustomersList, err error)
List retrieves all customers created.
See: https://docs.mollie.com/reference/v2/customers-api/list-customers
func (*CustomersService) Update ¶
func (cs *CustomersService) Update(id string, c Customer) (cc *Customer, err error)
Update mutates an existing customer
See: https://docs.mollie.com/reference/v2/customers-api/update-customer
type EligibilityReasons ¶ added in v1.1.0
type EligibilityReasons string
EligibilityReasons for paypal seller protection
const ( Eligible EligibilityReasons = "Eligible" Ineligible EligibilityReasons = "Ineligible" INROnly EligibilityReasons = "Partially Eligible - INR Only" AuthOnly EligibilityReasons = "Partially Eligible - Unauth Only" PartiallyEligible EligibilityReasons = "PartiallyEligible" EligibilityNone EligibilityReasons = "None" ActiveFraudControlUnAuthPremium EligibilityReasons = "Active Fraud Control - Unauth Premium Eligible" )
Available eligibility reasons for Paypal sellers protection
type EmbedValue ¶
type EmbedValue string
EmbedValue describes the valid value of embed query string.
const ( EmbedPayment EmbedValue = "payment" EmbedRefund EmbedValue = "refund" EmbedShipments EmbedValue = "shipments" EmbedChangebacks EmbedValue = "chanrgebacks" )
Valid Embed query string value.
type Error ¶
type Error struct { Code int `json:"code"` Message string `json:"message"` Content string `json:"content,omitempty"` Response *http.Response `json:"response"` // the full response that produced the error }
Error reports details on a failed API request.
type FailureReason ¶
type FailureReason string
FailureReason provides a description on a failed payment
const ( ReasonInvalidCardNumber FailureReason = "invalid_card_number" ReasonInvalidCCV FailureReason = "invalid_ccv" ReasonInvalidCardHolderName FailureReason = "invalid_card_holder_name" ReasonCardExpired FailureReason = "card_expired" ReasonInvalidCardType FailureReason = "invalid_card_type" ReasonRefusedByIssuer FailureReason = "refused_by_issuer" ReasonInsufficientFunds FailureReason = "insufficient_funds" ReasonInactiveCard FailureReason = "inactive_card" ReasonUnknown FailureReason = "unknown_reason" ReasonPossibleFraud FailureReason = "possible_fraud" )
Possible failure reasons
type GiftCardEnabled ¶ added in v1.6.0
type GiftCardEnabled struct { Resource string `json:"resource,omitempty"` ID GiftCardIssuer `json:"id,omitempty"` Description string `json:"description,omitempty"` Status GiftCardIssuerStatus `json:"status,omitempty"` Links GiftCardLinks `json:"_links,omitempty"` }
GiftCardEnabled describes the response of a gift card issuer enable operation.
type GiftCardIssuer ¶ added in v1.6.0
type GiftCardIssuer string
GiftCardIssuer type describes issuers supported by mollie.
const ( DecaudeuKaart GiftCardIssuer = "decadeaukaart" Dinercadeau GiftCardIssuer = "dinercadeau" Fashioncheque GiftCardIssuer = "fashioncheque" Festivalcadeau GiftCardIssuer = "festivalcadeau" Good4fun GiftCardIssuer = "good4fun" Kunstencultuurcadeaukaart GiftCardIssuer = "kunstencultuurcadeaukaart" Nationalebioscoopbon GiftCardIssuer = "nationalebioscoopbon" Nationaleentertainmentcard GiftCardIssuer = "nationaleentertainmentcard" Nationalegolfbon GiftCardIssuer = "nationalegolfbon" Ohmygood GiftCardIssuer = "ohmygood" Podiumcadeaukaart GiftCardIssuer = "podiumcadeaukaart" Reiscadeau GiftCardIssuer = "reiscadeau" Restaurantcadeau GiftCardIssuer = "restaurantcadeau" Sportenfitcadeau GiftCardIssuer = "sportenfitcadeau" Sustainablefashion GiftCardIssuer = "sustainablefashion" Travelcheq GiftCardIssuer = "travelcheq" Vvvgiftcard GiftCardIssuer = "vvvgiftcard" Vvvdinercheque GiftCardIssuer = "vvvdinercheque" Vvvlekkerweg GiftCardIssuer = "vvvlekkerweg" Webshopgiftcard GiftCardIssuer = "webshopgiftcard" Yourgift GiftCardIssuer = "yourgift" )
Supported gift card issuers
type GiftCardIssuerStatus ¶ added in v1.6.0
type GiftCardIssuerStatus string
GiftCardIssuerStatus describes the status of a gift card issuer in your account.
const ( PendingIssuer GiftCardIssuerStatus = "pending-issuer" EnabledIssuer GiftCardIssuerStatus = "enabled" )
Valid issuer statuses
type GiftCardLinks ¶ added in v1.6.0
type GiftCardLinks struct { Self URL `json:"self,omitempty"` Documentation URL `json:"documentation,omitempty"` }
GiftCardLinks are links embeded when a gift card is enabled.
type Image ¶
type Image struct { Size1x string `json:"size1X,omitempty"` Size2X string `json:"size2X,omitempty"` Svg string `json:"svg,omitempty"` }
Image describes a generic image resource retrieved by Mollie.
type Invoice ¶
type Invoice struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Reference string `json:"reference,omitempty"` VatNumber string `json:"vatNumber,omitempty"` Status InvoiceStatus `json:"status,omitempty"` IssuedAt string `json:"issuedAt,omitempty"` PaidAt string `json:"paidAt,omitempty"` DueAt string `json:"dueAt,omitempty"` NetAmount Amount `json:"netAmount,omitempty"` VatAmount Amount `json:"vatAmount,omitempty"` GrossAmount Amount `json:"grossAmount,omitempty"` Lines []*LineItem `json:"lines,omitempty"` Links *InvoiceLinks `json:"_links,omitempty"` }
Invoice describes an invoice details
type InvoiceLinks ¶
type InvoiceLinks struct { Self *URL `json:"self,omitempty"` PDF *URL `json:"pdf,omitempty"` Documentation *URL `json:"documentation,omitempty"` }
InvoiceLinks describes all the possible links to be returned with a invoice object.
type InvoiceList ¶
type InvoiceList struct { Count int `json:"count,omitempty"` Embedded struct { Invoices []Invoice `json:"invoices"` } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
InvoiceList describes how a list of invoices will be retrieved by Mollie.
type InvoiceStatus ¶
type InvoiceStatus string
InvoiceStatus status of the invoice
const ( InvoiceStatusOpen InvoiceStatus = "open" InvoiceStatusPaid InvoiceStatus = "paid" InvoiceStatusOverdue InvoiceStatus = "overdue" )
Valid status of the invoice
type InvoicesService ¶
type InvoicesService service
InvoicesService instance operates over invoice resources
func (*InvoicesService) Get ¶
func (is *InvoicesService) Get(id string) (i Invoice, err error)
Get retrieve details of an invoice, using the invoice’s identifier.
func (*InvoicesService) List ¶
func (is *InvoicesService) List(options *ListInvoiceOptions) (il InvoiceList, err error)
List retrieves a list of invoices associated with your account/organization.
type LineItem ¶
type LineItem struct { Period string `json:"period,omitempty"` Description string `json:"description,omitempty"` Count int64 `json:"count,omitempty"` VatPercentage float64 `json:"vatPercentage,omitempty"` Amount Amount `json:"amount,omitempty"` }
LineItem product details
type ListChargebackOptions ¶
type ListChargebackOptions struct { Include string `url:"include,omitempty"` Embed string `url:"embed,omitempty"` ProfileID string `url:"profileId,omitempty"` }
ListChargebackOptions describes list chargebacks endpoint valid query string parameters.
type ListCustomersOptions ¶
type ListCustomersOptions struct { From string `url:"from,omitempty"` Limit int `url:"limit,omitempty"` ProfileID string `url:"profileId,omitempty"` SequenceType SequenceType `url:"sequenceType,omitempty"` RedirectURL string `url:"redirectUrl,omitempty"` }
ListCustomersOptions contains valid query parameters for the list customers endpoint.
type ListInvoiceOptions ¶
type ListInvoiceOptions struct { Reference string `json:"reference,omitempty"` Year string `json:"year,omitempty"` From int64 `json:"from,omitempty"` Limit int64 `json:"limit,omitempty"` }
ListInvoiceOptions describes list invoices endpoint valid query string parameters.
type ListMandatesOptions ¶ added in v1.2.0
type ListMandatesOptions struct { From string `url:"from,omitempty"` Limit int `url:"limit,omitempty"` }
ListMandatesOptions contains valid query parameters to filter the List mandates actions. From is a mandate id to offset from (inclusive) Limit is the max number of mandates to retrieve
type ListMethods ¶
type ListMethods struct { Count int `json:"count,omitempty"` Embedded struct { Methods []PaymentMethodInfo } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
ListMethods describes a list of paginated payment methods.
type ListPaymentOptions ¶
type ListPaymentOptions struct { Include string `url:"include,omitempty"` Embed string `url:"embed,omitempty"` ProfileID string `url:"profileId,omitempty"` }
ListPaymentOptions describes list payments endpoint valid query string parameters.
type ListRefundOptions ¶
type ListRefundOptions struct { From string `url:"from,omitempty"` Limit string `url:"limit,omitempty"` ProfileID string `url:"profileId,omitempty"` Embed EmbedValue `url:"embed,omitempty"` }
ListRefundOptions describes list refund endpoint valid query string parameters.
See: https://docs.mollie.com/reference/v2/refunds-api/list-refunds.
type Locale ¶
type Locale string
Locale represents a country and language in ISO-15897 format.
const ( English Locale = "en_US" Dutch Locale = "nl_NL" DutchBelgium Locale = "nl_BE" French Locale = "fr_FR" FrenchBelgium Locale = "fr_BE" German Locale = "de_DE" GermanAustria Locale = "de_AT" GermanSwiss Locale = "de_CH" Spanish Locale = "es_ES" Catalan Locale = "ca_ES" Portuguese Locale = "pt_PT" Italian Locale = "it_IT" Norwegian Locale = "nb_NO" Swedish Locale = "sv_SE" Finish Locale = "fi_FI" Danish Locale = "da_DK" Icelandic Locale = "is_IS" Hungarian Locale = "hu_HU" Polish Locale = "pl_PL" Latvian Locale = "lv_LV" Lithuanian Locale = "lt_LT" )
Mollie supported locales
type Mandate ¶ added in v1.2.0
type Mandate struct { ID string `json:"id,omitempty"` Resource string `json:"resource,omitempty"` Method PaymentMethod `json:"method,omitempty"` ConsumerName string `json:"consumerName,omitempty"` ConsumerAccount string `json:"consumerAccount,omitempty"` ConsumerBic string `json:"consumerBic,omitempty"` SignatureDate *ShortDate `json:"signatureDate,omitempty"` MandateReference string `json:"mandateReference,omitempty"` Mode Mode `json:"mode,omitempty"` Status MandateStatus `json:"status,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Details MandateDetails `json:"details,omitempty"` Links MandateLinks `json:"_links,omitempty"` }
Mandate allow you to charge a customer’s credit card or bank account recurrently.
type MandateDetails ¶ added in v1.2.0
type MandateDetails struct { ConsumerName string `json:"consumerName,omitempty"` ConsumerAccount string `json:"consumerAccount,omitempty"` ConsumerBic string `json:"consumerBic,omitempty"` CardHolder string `json:"cardHolder,omitempty"` CardNumber string `json:"cardNumber,omitempty"` CardLabel CardLabel `json:"cardLabel,omitempty"` CardFingerprint string `json:"cardFingerprint,omitempty"` CardExpiryDate *ShortDate `json:"cardExpiryDate,omitempty"` }
MandateDetails are possible values inside the mandate.details field
type MandateLinks ¶ added in v1.2.0
type MandateLinks struct { Self *URL `json:"self,omitempty"` Customer *URL `json:"customer,omitempty"` Documentation *URL `json:"documentation,omitempty"` }
MandateLinks response objects
type MandateList ¶ added in v1.2.0
type MandateList struct { Count int `json:"count,omitempty"` Embedded struct { Mandates []Mandate } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
MandateList describes how a list of mandates will be retrieved by Mollie.
type MandateStatus ¶ added in v1.2.0
type MandateStatus string
MandateStatus for the Mandate object
const ( PendingMandate MandateStatus = "pending" ValidMandate MandateStatus = "valid" InvalidMandate MandateStatus = "invalid" )
Valid mandate statuses
type MandatesService ¶ added in v1.2.0
type MandatesService service
MandatesService operates over customer mandates endpoints.
func (*MandatesService) Create ¶ added in v1.2.0
func (ms *MandatesService) Create(cID string, mandate Mandate) (mr *Mandate, err error)
Create a mandate for a specific customer. Mandates allow you to charge a customer’s credit card or bank account recurrently.
See: https://docs.mollie.com/reference/v2/mandates-api/create-mandate
func (*MandatesService) Get ¶ added in v1.2.0
func (ms *MandatesService) Get(cID, mID string) (mr *Mandate, err error)
Get retrieves a mandate by its ID and its customer’s ID. The mandate will either contain IBAN or credit card details, depending on the type of mandate.
See: https://docs.mollie.com/reference/v2/mandates-api/get-mandate
func (*MandatesService) List ¶ added in v1.2.0
func (ms *MandatesService) List(cID string, opt *ListMandatesOptions) (ml MandateList, err error)
List retrieves all mandates for the given customerId, ordered from newest to oldest.
See: https://docs.mollie.com/reference/v2/mandates-api/list-mandates
func (*MandatesService) Revoke ¶ added in v1.2.0
func (ms *MandatesService) Revoke(cID, mID string) (err error)
Revoke a customer’s mandate. You will no longer be able to charge the consumer’s bank account or credit card with this mandate and all connected subscriptions will be canceled.
See: https://docs.mollie.com/reference/v2/mandates-api/revoke-mandate
type MethodsLinks ¶
type MethodsLinks struct { Self URL `json:"self,omitempty"` Docs URL `json:"documentation,omitempty"` }
MethodsLinks describes links attached to methods service responses.
type MethodsOptions ¶
type MethodsOptions struct { Locale Locale `url:"locale,omitempty"` Currency string `url:"currency,omitempty"` ProfileID string `url:"profileId,omitempty"` Include string `url:"include,omitempty"` // Use for List method only SequenceType SequenceType `url:"sequenceType,omitempty"` AmountCurrency string `url:"amount[currency],omitempty"` AmountValue string `url:"amount[value],omitempty"` Resource string `url:"resource,omitempty"` BillingCountry string `url:"billingCountry,omitempty"` IncludeWallets string `url:"includeWallets,omitempty"` }
MethodsOptions are applicable query string parameters to methods service endpoints.
type MethodsService ¶
type MethodsService service
MethodsService operates on methods endpoints
func (*MethodsService) All ¶
func (ms *MethodsService) All(options *MethodsOptions) (pm *ListMethods, err error)
All retrieves all the payment methods enabled for your account/organization
See: https://docs.mollie.com/reference/v2/methods-api/list-all-methods
func (*MethodsService) Get ¶
func (ms *MethodsService) Get(id string, options *MethodsOptions) (pmi *PaymentMethodInfo, err error)
Get returns information about the payment method specified by id, it also receives a pointer to the method options containing applicable query string parameters
See: https://docs.mollie.com/reference/v2/methods-api/get-method
func (*MethodsService) List ¶
func (ms *MethodsService) List(options *MethodsOptions) (pm *ListMethods, err error)
List retrieves all enabled payment methods. The results are not paginated.
See: https://docs.mollie.com/reference/v2/methods-api/list-methods
type MiscellaneousService ¶
type MiscellaneousService service
MiscellaneousService operates over the resources described in Mollie's miscellaneous API endpoints section
func (*MiscellaneousService) ApplePaymentSession ¶
func (ms *MiscellaneousService) ApplePaymentSession(asr *ApplePaymentSessionRequest) (aps *ApplePaymentSession, err error)
ApplePaymentSession returns an Apple Payment Session object valid for one transaction.
See: https://docs.mollie.com/reference/v2/wallets-api/request-apple-pay-payment-session
type Order ¶
type Order struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` ProfileID string `json:"profileId,omitempty"` Method *PaymentMethod `json:"method,omitempty"` Mode *Mode `json:"mode,omitempty"` Amount *Amount `json:"amount,omitempty"` AmountCaptured *Amount `json:"amountCaptured,omitempty"` AmountRefunded *Amount `json:"amountRefunded,omitempty"` Status *OrderStatus `json:"status,omitempty"` IsCancelable bool `json:"isCancelable,omitempty"` BillingAddress *OrderAddress `json:"billingAddress,omitempty"` ConsumerDateOfBirth *ShortDate `json:"consumerDateOfBirth,omitempty"` OrderNumber string `json:"orderNumber,omitempty"` ShippingAddress *OrderAddress `json:"shippingAddress,omitempty"` Locale *Locale `json:"locale,omitempty"` Metadata interface{} `json:"metadata,omitempty"` RedirectURL string `json:"redirectUrl,omitempty"` Lines []*OrderLine `json:"lines,omitempty"` WebhookURL string `json:"webhookUrl,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` ExpiresAt *time.Time `json:"expiresAt,omitempty"` ExpiredAt *time.Time `json:"expiredAt,omitempty"` PaidAt *time.Time `json:"paidAt,omitempty"` AuthorizedAt *time.Time `json:"authorizedAt,omitempty"` CanceledAt *time.Time `json:"canceledAt,omitempty"` CompletedAt *time.Time `json:"completedAt,omitempty"` Embedded struct { Payments []Payment `json:"payments,omitempty"` Refunds []Refund `json:"refunds,omitempty"` } `json:"_embedded,omitempty"` Links *OrderLinks `json:"_links,omitempty"` OrderPayment *OrderPayment `json:"payment,omitempty"` Description string `json:"description,omitempty"` ShopperCountryMustMatchTheBillingCountry bool `json:"shopperCountryMustMatchTheBillingCountry,omitempty"` }
Order explain the items that customers need to pay for.
type OrderAddress ¶
type OrderAddress struct { OrganizationName string `json:"organizationName,omitempty"` Title string `json:"title,omitempty"` GivenName string `json:"givenName,omitempty"` FamilyName string `json:"familyName,omitempty"` Email string `json:"email,omitempty"` Phone *PhoneNumber `json:"phone,omitempty"` StreetAndNumber string `json:"streetAndNumber,omitempty"` StreetAdditional string `json:"streetAdditional,omitempty"` PostalCode string `json:"postalCode,omitempty"` City string `json:"city,omitempty"` Region string `json:"region,omitempty"` Country string `json:"country,omitempty"` }
OrderAddress identify both the address and the person the order is billed or shipped to.
type OrderLine ¶
type OrderLine struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` OrderID string `json:"orderId,omitempty"` ProductType *ProductType `json:"type,omitempty"` Name string `json:"name,omitempty"` Amount *Amount `json:"amount,omitempty"` Status *OrderLineStatus `json:"status,omitempty"` IsCancelable bool `json:"isCancelable,omitempty"` Quantity int `json:"quantity,omitempty"` QuantityShipped int `json:"quantityShipped,omitempty"` AmountShipped *Amount `json:"amountShipped,omitempty"` QuantityRefunded int `json:"quantityRefunded,omitempty"` AmountRefunded *Amount `json:"amountRefunded,omitempty"` QuantityCanceled int `json:"quantityCanceled,omitempty"` AmountCanceled *Amount `json:"amountCanceled,omitempty"` ShippableQuantity int `json:"shippableQuantity,omitempty"` RefundableQuantity int `json:"refundableQuantity,omitempty"` CancelableQuantity int `json:"cancelableQuantity,omitempty"` UnitPrice *Amount `json:"unitPrice,omitempty"` DiscountAmount *Amount `json:"discountAmount,omitempty"` TotalAmount *Amount `json:"totalAmount,omitempty"` VatRate string `json:"vatRate,omitempty"` VatAmount *Amount `json:"vatAmount,omitempty"` SKU string `json:"sku,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Links *OrderLineLinks `json:"_links,omitempty"` ImageURL string `json:"imageUrl,omitempty"` ProductURL string `json:"productUrl,omitempty"` }
OrderLine contain the actual things the customer bought.
type OrderLineLinks ¶
type OrderLineLinks struct { ProductURL *URL `json:"productUrl,omitempty"` ImageURL *URL `json:"imageUrl,omitempty"` }
OrderLineLinks describes object with several URL objects relevant to the order line.
type OrderLineStatus ¶
type OrderLineStatus string
OrderLineStatus describes status of the order line.
const ( OrderLineCreated OrderLineStatus = "created" OrderLineAuthorized OrderLineStatus = "authorized" OrderLinePaid OrderLineStatus = "paid" OrderLineShipping OrderLineStatus = "shipping" OrderLineCanceled OrderLineStatus = "canceled" OrderLineCompleted OrderLineStatus = "completed" )
Valid order line status.
type OrderLinks ¶
type OrderLinks struct { Self *URL `json:"self,omitempty"` Checkout *URL `json:"checkout,omitempty"` Documentation *URL `json:"documentation,omitempty"` Dashboard *URL `json:"dashboard,omitempty"` }
OrderLinks describes an object with several URL objects relevant to the order. Every URL object will contain an href and a type field.
type OrderList ¶
type OrderList struct { Count int `json:"count,omitempty"` Embedded struct { Orders []Order `json:"orders,omitempty"` } `json:"_embedded,omitempty"` Links PaginationLinks `json:"links,omitempty"` }
OrderList for containing the response of list orders
type OrderListOptions ¶
type OrderListOptions struct { ProfileID string `url:"profileId,omitempty"` From string `url:"from,omitempty"` Limit int `url:"limit,omitempty"` }
OrderListOptions describes order endpoint valid query string parameters.
type OrderListRefund ¶
type OrderListRefund struct { Count int `json:"count,omitempty"` Embedded struct { Refunds []Refund `json:"refund,omitempty"` } `json:"_embedded,omitempty"` Links PaginationLinks `json:"links,omitempty"` }
OrderListRefund for containing the response of list orders
type OrderListRefundOptions ¶
type OrderListRefundOptions struct { From string `url:"from,omitempty"` Limit int `url:"limit,omitempty"` Embed EmbedValue `url:"embed,omitempty"` }
OrderListRefundOptions describes order endpoint valid query string parameters.
type OrderOptions ¶
type OrderOptions struct { Embed []EmbedValue `url:"embed,omitempty"` ProfileID string `url:"profileId,omitempty"` }
OrderOptions describes order endpoint valid query string parameters.
type OrderPayment ¶
type OrderPayment struct { ConsumerAccount string `json:"consumerAccount,omitempty"` CustomerID string `json:"customerId,omitempty"` CustomerReference string `json:"customerReference,omitempty"` Issuer string `json:"issuer,omitempty"` MandateID string `json:"mandateId,omitempty"` SequenceType *SequenceType `json:"sequenceType,omitempty"` VoucherNumber string `json:"voucherNumber,omitempty"` VoucherPin string `json:"voucherPin,omitempty"` WebhookURL string `json:"webhookUrl,omitempty"` ApplicationFee *ApplicationFee `json:"applicationFee,omitempty"` Method *PaymentMethod `json:"method,omitempty"` }
OrderPayment describes payment specific parameters that can be passed during order creation
type OrderStatus ¶
type OrderStatus string
OrderStatus describes the valid order status.
const ( Created OrderStatus = "created" Paid OrderStatus = "paid" Authorized OrderStatus = "authorized" Canceled OrderStatus = "canceled" Shipping OrderStatus = "shipping" Completed OrderStatus = "completed" Expired OrderStatus = "expired" )
Valid order status.
type OrdersService ¶
type OrdersService service
OrdersService instance operates over refund resources.
func (*OrdersService) Cancel ¶
func (ors *OrdersService) Cancel(orderID string) (order *Order, err error)
Cancel try to cancel the order that fulfill certain requirements.
See https://docs.mollie.com/reference/v2/orders-api/cancel-order
func (*OrdersService) CancelOrderLines ¶
func (ors *OrdersService) CancelOrderLines(orderID string, orderLines []OrderLine) (err error)
CancelOrderLines can be used to cancel one or more order lines that were previously authorized using a pay after delivery payment method. Use the Cancel Order API if you want to cancel the entire order or the remainder of the order.
See https://docs.mollie.com/reference/v2/orders-api/cancel-order-lines
func (*OrdersService) Create ¶
func (ors *OrdersService) Create(ord Order, opt *OrderOptions) (order *Order, err error)
Create an order will automatically create the required payment to allow your customer to pay for the order.
See https://docs.mollie.com/reference/v2/orders-api/create-order
func (*OrdersService) CreateOrderPayment ¶
func (ors *OrdersService) CreateOrderPayment(orderID string, ordPay *OrderPayment) (payment *Payment, err error)
CreateOrderPayment can only be created while the status of the order is created, and when the status of the existing payment is either expired, canceled or failed. See https://docs.mollie.com/reference/v2/orders-api/create-order-payment
func (*OrdersService) CreateOrderRefund ¶
func (ors *OrdersService) CreateOrderRefund(orderID string, order *Order) (refund Refund, err error)
CreateOrderRefund using the Orders API, refunds should be made against the order. See https://docs.mollie.com/reference/v2/orders-api/create-order-refund
func (*OrdersService) Get ¶
func (ors *OrdersService) Get(orID string, opt *OrderOptions) (order *Order, err error)
Get retrieve a single order by its ID.
See https://docs.mollie.com/reference/v2/orders-api/get-order
func (*OrdersService) List ¶
func (ors *OrdersService) List(opt *OrderListOptions) (ordList *OrderList, err error)
List is to retrieve all orders.
See https://docs.mollie.com/reference/v2/orders-api/list-orders
func (*OrdersService) ListOrderRefunds ¶
func (ors *OrdersService) ListOrderRefunds(orderID string, opt *OrderListRefundOptions) (orderListRefund OrderListRefund, err error)
ListOrderRefunds retrieve all order refunds. See https://docs.mollie.com/reference/v2/orders-api/list-order-refunds
func (*OrdersService) Update ¶
func (ors *OrdersService) Update(orderID string, ord Order) (order *Order, err error)
Update is used to update the billing and/or shipping address of an order.
See https://docs.mollie.com/reference/v2/orders-api/update-order
func (*OrdersService) UpdateOrderLine ¶
func (ors *OrdersService) UpdateOrderLine(orderID string, orderLineID string, orderLine OrderLine) (order *Order, err error)
UpdateOrderLine can be used to update an order line.
See https://docs.mollie.com/reference/v2/orders-api/update-orderline
type Organization ¶
type Organization struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Name string `json:"name,omitempty"` Email string `json:"email,omitempty"` Locale string `json:"locale,omitempty"` Address *Address `json:"address,omitempty"` RegistrationNumber string `json:"registrationNumber,omitempty"` VatNumber string `json:"vatNumber,omitempty"` VatRegulation string `json:"vatRegulation,omitempty"` Links *OrganizationLinks `json:"_links,omitempty"` }
Organization describes an organization detail
type OrganizationLinks ¶
type OrganizationLinks struct { Self *URL `json:"self,omitempty"` Chargebacks *URL `json:"chargebacks,omitempty"` Customers *URL `json:"customers,omitempty"` Dashboard *URL `json:"dashboard,omitempty"` Invoices *URL `json:"invoices,omitempty"` Payments *URL `json:"payments,omitempty"` Profiles *URL `json:"profiles,omitempty"` Refunds *URL `json:"refunds,omitempty"` Settlements *URL `json:"settlements,omitempty"` Documentation *URL `json:"documentation,omitempty"` }
OrganizationLinks describes all the possible links to be returned with a organization object.
type OrganizationsService ¶
type OrganizationsService service
OrganizationsService instance operates over organization resources
func (*OrganizationsService) Get ¶
func (os *OrganizationsService) Get(id string) (o *Organization, err error)
Get retrieve an organization by its id.
func (*OrganizationsService) GetCurrent ¶
func (os *OrganizationsService) GetCurrent() (o *Organization, err error)
GetCurrent retrieve the currently authenticated organization
type PaginationLinks ¶
type PaginationLinks struct { Self *URL `json:"self,omitempty"` Previous *URL `json:"previous,omitempty"` Next *URL `json:"next,omitempty"` Docs *URL `json:"documentation,omitempty"` }
PaginationLinks describes the hal component of paginated responses.
type Payment ¶
type Payment struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Mode Mode `json:"mode,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Status string `json:"status,omitempty"` IsCancellable bool `json:"isCancellable,omitempty"` AuthorizedAt *time.Time `json:"authorizedAt,omitempty"` PaidAt *time.Time `json:"paidAt,omitempty"` CanceledAt *time.Time `json:"canceledAt,omitempty"` ExpiresAt *time.Time `json:"expiresAt,omitempty"` ExpiredAt *time.Time `json:"expiredAt,omitempty"` FailedAt *time.Time `json:"failedAt,omitempty"` Amount *Amount `json:"amount,omitempty"` AmountRefunded *Amount `json:"amountRefunded,omitempty"` AmountRemaining *Amount `json:"amountRemaining,omitempty"` AmountCaptured *Amount `json:"amountCaptured,omitempty"` Description string `json:"description,omitempty"` RedirectURL string `json:"redirectUrl,omitempty"` WebhookURL string `json:"webhookUrl,omitempty"` Method *PaymentMethod `json:"method,omitempty"` Metadata interface{} `json:"metadata,omitempty"` Locale *Locale `json:"locale,omitempty"` CountryCode string `json:"countryCode,omitempty"` ProfileID string `json:"profileId,omitempty"` SettlementAmount *Amount `json:"settlementAmount,omitempty"` SettlementID string `json:"settlementId,omitempty"` CustomerID string `json:"customerId,omitempty"` SequenceType *SequenceType `json:"sequenceType,omitempty"` MandateID string `json:"mandateId,omitempty"` OrderID string `json:"orderId,omitempty"` ApplicationFee *ApplicationFee `json:"applicationFee,omitempty"` Links *PaymentLinks `json:"_links,omitempty"` Details *PaymentDetails `json:"details,omitempty"` RestrictPaymentMethodsToCountry *Locale `json:"restrictPaymentMethodsToCountry,omitempty"` SubscriptionID string `json:"subscriptionId,omitempty"` }
Payment describes a transaction between a customer and a merchant
type PaymentDetails ¶
type PaymentDetails struct { BankAccount string `json:"bankAccount,omitempty"` BankBIC string `json:"bankBic,omitempty"` BankName string `json:"bankName,omitempty"` BankReason string `json:"bankReason,omitempty"` BatchReference string `json:"batchReference,omitempty"` BillingEmail string `json:"billingEmail,omitempty"` CardAudience string `json:"cardAudience,omitempty"` CardCountryCode string `json:"cardCountryCode,omitempty"` CardFingerPrint string `json:"cardFingerPrint,omitempty"` CardHolder string `json:"cardHolder,omitempty"` CardLabel string `json:"cardLabel,omitempty"` CardNumber string `json:"cardNumber,omitempty"` CardSecurity string `json:"cardSecurity,omitempty"` ConsumerAccount string `json:"consumerAccount,omitempty"` ConsumerBIC string `json:"consumerBic,omitempty"` ConsumerName string `json:"consumerName,omitempty"` ConsumerReference string `json:"consumerReference,omitempty"` CreditorIdentifier string `json:"creditorIdentifier,omitempty"` DueDate *ShortDate `json:"dueDate,omitempty"` EndToEndIdentifier string `json:"endToEndIdentifier,omitempty"` FailureReason *FailureReason `json:"failureReason,omitempty"` FeeRegion *FeeRegion `json:"feeRegion,omitempty"` FileReference string `json:"fileReference,omitempty"` GiftCards []UsedGiftCard `json:"giftCards,omitempty"` MandateReference string `json:"mandateReference,omitempty"` PaypalDigitalGoods bool `json:"digitalGoods,omitempty"` PaypalFee *Amount `json:"paypalFee,omitempty"` PaypalPayerID string `json:"paypalPayerId,omitempty"` PaypalReference string `json:"paypalReference,omitempty"` QRCode *QRCode `json:"qrCode,omitempty"` RemainderAmount *Amount `json:"remainderAmount,omitempty"` RemainderMethod *PaymentMethod `json:"remainderMethod,omitempty"` SellerProtection *EligibilityReasons `json:"sellerProtection,omitempty"` ShippingAddress string `json:"shippingAddress,omitempty"` SignatureDate *ShortDate `json:"signatureDate,omitempty"` TransferReference string `json:"transferReference,omitempty"` VoucherNumber string `json:"voucherNumber,omitempty"` Wallet string `json:"wallet,omitempty"` Links struct { Status URL `json:"status,omitempty"` PayOnline URL `json:"payOnline,omitempty"` } `json:"_links,omitempty"` }
PaymentDetails contains details for the specified payment method
type PaymentLinks ¶
type PaymentLinks struct { Self URL `json:"self,omitempty"` Checkout URL `json:"checkout,omitempty"` ChangePaymentState URL `json:"changePaymentState,omitempty"` Refunds URL `json:"refunds,omitempty"` ChargeBacks URL `json:"chargebacks,omitempty"` Captures URL `json:"captures,omitempty"` Settlement URL `json:"settlement,omitempty"` Documentation URL `json:"documentation,omitempty"` Mandate URL `json:"mandate,omitempty"` Subscription URL `json:"subscription,omitempty"` Customer URL `json:"customer,omitempty"` Order URL `json:"order,omitempty"` Dashboard URL `json:"dashboard,omitempty"` }
PaymentLinks describes all the possible links to be returned with a payment object.
type PaymentList ¶
type PaymentList struct { Count int `json:"count,omitempty"` Embedded struct { Payments []Payment } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
PaymentList describes how a list of payments will be retrieved by Mollie.
type PaymentMethod ¶
type PaymentMethod string
PaymentMethod is a payment method supported by Mollie.
const ( Bancontact PaymentMethod = "bancontact" BankTransfer PaymentMethod = "banktransfer" Belfius PaymentMethod = "belfius" CreditCard PaymentMethod = "creditcard" DirectDebit PaymentMethod = "directdebit" EPS PaymentMethod = "eps" GiftCard PaymentMethod = "giftcard" GiroPay PaymentMethod = "giropay" IDeal PaymentMethod = "ideal" INGHomePay PaymentMethod = "inghomepay" KBC PaymentMethod = "kbc" KlarnaPayLater PaymentMethod = "klarnapaylater" KlarnaLiceit PaymentMethod = "klarnaliceit" MyBank PaymentMethod = "mybank" PayPal PaymentMethod = "paypal" PaySafeCard PaymentMethod = "paysafecard" PRZelewy24 PaymentMethod = "przelewy24" Sofort PaymentMethod = "sofort" )
Supported payment methods
type PaymentMethodInfo ¶
type PaymentMethodInfo struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Description string `json:"description,omitempty"` MinimumAmount *Amount `json:"minimumAmount,omitempty"` MaximumAmount *Amount `json:"maximumAmount,omitempty"` Image Image `json:"image,omitempty"` Pricing []PaymentMethodPricing `json:"pricing,omitempty"` Links MethodsLinks `json:"_links,omitempty"` }
PaymentMethodInfo describes a single method with details.
type PaymentMethodPricing ¶
type PaymentMethodPricing struct { Description string `json:"description,omitempty"` Fixed *Amount `json:"fixed,omitempty"` Variable string `json:"variable,omitempty"` }
PaymentMethodPricing contains information about commissions and fees applicable to a payment method.
type PaymentOptions ¶
type PaymentOptions struct { Include string `url:"include,omitempty"` Embed string `url:"embed,omitempty"` }
PaymentOptions describes payments endpoint valid query string parameters.
See: https://docs.mollie.com/reference/v2/payments-api/get-payment
type PaymentsService ¶
type PaymentsService service
PaymentsService instance operates over payment resources
func (*PaymentsService) Cancel ¶
func (ps *PaymentsService) Cancel(id string) (p Payment, err error)
Cancel removes a payment (if possible) from your Mollie account.
See: https://docs.mollie.com/reference/v2/payments-api/cancel-payment
func (*PaymentsService) Create ¶
func (ps *PaymentsService) Create(p Payment) (np Payment, err error)
Create stores a new payment object attached to your Mollie account.
See: https://docs.mollie.com/reference/v2/payments-api/create-payment#
func (*PaymentsService) Get ¶
func (ps *PaymentsService) Get(id string, options *PaymentOptions) (p Payment, err error)
Get retrieves a single payment object by its payment token.
func (*PaymentsService) List ¶
func (ps *PaymentsService) List(options *ListPaymentOptions) (pl PaymentList, err error)
List retrieves a list of payments associated with your account/organization.
See: https://docs.mollie.com/reference/v2/payments-api/list-payments
func (*PaymentsService) Update ¶
func (ps *PaymentsService) Update(id string, up Payment) (p Payment, err error)
Update can be used to update some details of a created payment.
See: https://docs.mollie.com/reference/v2/payments-api/update-payment#
type PhoneNumber ¶
type PhoneNumber string
PhoneNumber represents a phone number in the E.164 format.
type ProductType ¶
type ProductType string
ProductType describes the type of product bought, for example, a physical or a digital product.
const ( Physical ProductType = "physical" Discount ProductType = "discount" Digital ProductType = "digital" ShippingFee ProductType = "shipping_fee" StoreCredit ProductType = "store_credit" GiftCardProduct ProductType = "gift_card" Surcharge ProductType = "surcharge" )
Valid product type.
type Profile ¶
type Profile struct { ID string `json:"id,omitempty"` CategoryCode CategoryCode `json:"categoryCode,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Email string `json:"email,omitempty"` Mode Mode `json:"mode,omitempty"` Name string `json:"name,omitempty"` Phone PhoneNumber `json:"phone,omitempty"` Resource string `json:"resource,omitempty"` Review struct { Status string `json:"status,omitempty"` } `json:"review,omitempty"` Status ProfileStatus `json:"status,omitempty"` Website string `json:"website,omitempty"` Links ProfileLinks `json:"_links,omitempty"` }
Profile will usually reflect the trademark or brand name of the profile’s website or application.
type ProfileLinks ¶
type ProfileLinks struct { Self *URL `json:"self,omitempty"` Chargebacks *URL `json:"chargebacks,omitempty"` Methods *URL `json:"methods,omitempty"` Refunds *URL `json:"refunds,omitempty"` CheckoutPreviewURL *URL `json:"checkoutPreviewUrl,omitempty"` Documentation *URL `json:"documentation,omitempty"` Dashboard *URL `json:"dashboard,omitempty"` }
ProfileLinks contains URL's to relevant information related to a profile.
type ProfileList ¶
type ProfileList struct { Count int `json:"count,omitempty"` Embedded struct { Profiles []Profile `json:"profiles,omitempty"` } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
ProfileList contains a list of profiles for your account.
type ProfileListOptions ¶
type ProfileListOptions struct { From string `url:"from,omitempty"` Limit uint `url:"limit,omitempty"` }
ProfileListOptions are optional query string parameters for the list profiles request
type ProfileStatus ¶
type ProfileStatus string
ProfileStatus determines whether the profile is able to receive live payments
const ( StatusUnverified ProfileStatus = "unverified" StatusVerified ProfileStatus = "verified" StatusBlocked ProfileStatus = "blocked" )
Possible profile statuses
type ProfilesService ¶
type ProfilesService service
ProfilesService operates over profile resource
func (*ProfilesService) Create ¶
func (ps *ProfilesService) Create(np *Profile) (p *Profile, err error)
Create stores a new profile in your Mollie account.
func (*ProfilesService) Current ¶
func (ps *ProfilesService) Current() (p *Profile, err error)
Current returns the profile belonging to the API key. This method only works when using API keys.
func (*ProfilesService) Delete ¶
func (ps *ProfilesService) Delete(id string) (err error)
Delete enables profile deletions, rendering the profile unavailable for further API calls and transactions.
func (*ProfilesService) DisableGiftCardIssuer ¶ added in v1.6.0
func (ps *ProfilesService) DisableGiftCardIssuer(profileID string, issuer GiftCardIssuer) (err error)
DisableGiftCardIssuer deactivates the requested giftcard issuer for the provided profile id.
See: https://docs.mollie.com/reference/v2/profiles-api/disable-gift-card-issuer
func (*ProfilesService) DisableGiftCardIssuerForCurrent ¶ added in v1.6.0
func (ps *ProfilesService) DisableGiftCardIssuerForCurrent(issuer GiftCardIssuer) (err error)
DisableGiftCardIssuerForCurrent deactivates the specified issuer for the curent profile (token owner).
See: https://docs.mollie.com/reference/v2/profiles-api/disable-gift-card-issuer
func (*ProfilesService) DisablePaymentMethod ¶
func (ps *ProfilesService) DisablePaymentMethod(id string, pm PaymentMethod) (err error)
DisablePaymentMethod disables a payment method on a specific or authenticated profile. If you're using API tokens for authentication, pass "me" as id.
func (*ProfilesService) EnableGiftCardIssuer ¶ added in v1.6.0
func (ps *ProfilesService) EnableGiftCardIssuer(profileID string, issuer GiftCardIssuer) (gc *GiftCardEnabled, err error)
EnableGiftCardIssuer activates the requested giftcard issuer for the provided profile id.
See: https://docs.mollie.com/reference/v2/profiles-api/enable-gift-card-issuer
func (*ProfilesService) EnableGiftCardIssuerForCurrent ¶ added in v1.6.0
func (ps *ProfilesService) EnableGiftCardIssuerForCurrent(issuer GiftCardIssuer) (gc *GiftCardEnabled, err error)
EnableGiftCardIssuerForCurrent activates the specified issuer for the curent profile (token owner).
See: https://docs.mollie.com/reference/v2/profiles-api/enable-gift-card-issuer
func (*ProfilesService) EnablePaymentMethod ¶
func (ps *ProfilesService) EnablePaymentMethod(id string, pm PaymentMethod) (pmi *PaymentMethodInfo, err error)
EnablePaymentMethod enables a payment method on a specific or authenticated profile. If you're using API tokens for authentication, pass "me" as id.
func (*ProfilesService) Get ¶
func (ps *ProfilesService) Get(id string) (p *Profile, err error)
Get retrieves the a profile by ID.
Example ¶
setup() defer teardown() id := "pfl_v9hTwCvYqw" _ = tClient.WithAuthenticationValue("test_token") tMux.HandleFunc("/v2/profiles/"+id, func(w http.ResponseWriter, r *http.Request) { if _, ok := r.Header[AuthHeader]; !ok { w.WriteHeader(http.StatusUnauthorized) } w.WriteHeader(http.StatusOK) _, _ = w.Write([]byte(testdata.GetProfileResponse)) }) p, err := tClient.Profiles.Get(id) if err != nil { log.Fatal(err) } fmt.Println(p.ID)
Output: pfl_v9hTwCvYqw
func (*ProfilesService) List ¶
func (ps *ProfilesService) List(options *ProfileListOptions) (pl *ProfileList, err error)
List returns all the profiles for the authenticated account
type QRCode ¶
type QRCode struct { Height int `json:"height,omitempty"` Width int `json:"width,omitempty"` Src string `json:"src,omitempty"` }
QRCode object represents an image of a QR code.
type Rate ¶
type Rate struct { Fixed Amount `json:"fixed,omitempty"` Variable string `json:"variable,omitempty"` }
Rate describes service rates, further divided into fixed and percentage costs.
type Refund ¶
type Refund struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` Amount *Amount `json:"amount,omitempty"` SettlementID string `json:"settlementId,omitempty"` SettlementAmount *Amount `json:"settlementAmount,omitempty"` Description string `json:"description,omitempty"` Metadata interface{} `json:"metadata,omitempty"` Status *RefundStatus `json:"status,omitempty"` Lines []*OrderLine `json:"lines,omitempty"` PaymentID string `json:"paymentId,omitempty"` OrderID string `json:"orderId,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Links *RefundLinks `json:"_links,omitempty"` }
Refund describe a refund for a certain payment.
type RefundLinks ¶
type RefundLinks struct { Self *URL `json:"self,omitempty"` Payment *URL `json:"payment,omitempty"` Settlement *URL `json:"settlement,omitempty"` Order *URL `json:"order,omitempty"` Documentation *URL `json:"documentation,omitempty"` }
RefundLinks describes all the possible links to be returned with a Refund object.
type RefundList ¶
type RefundList struct { Count int `json:"count,omitempty"` Embedded struct { Refunds []Refund } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
RefundList describes how a list of refunds will be retrieved by Mollie.
type RefundOptions ¶
type RefundOptions struct {
Embed EmbedValue `url:"embed,omitempty"`
}
RefundOptions describes refund endpoint valid query string parameters.
See: https://docs.mollie.com/reference/v2/refunds-api/get-refund.
type RefundStatus ¶
type RefundStatus string
RefundStatus describes the status of the refund.
const ( Queued RefundStatus = "queued" Pending RefundStatus = "pending" Processing RefundStatus = "processing" Refunded RefundStatus = "refunded" Failed RefundStatus = "failed" )
Valid refund status.
type RefundsService ¶
type RefundsService service
RefundsService instance operates over refund resources.
func (*RefundsService) Cancel ¶
func (rs *RefundsService) Cancel(paymentID, refundID string, options *RefundOptions) (err error)
Cancel try to cancel the refund request. The refund can only be canceled while the refund’s status is either queued or pending. See https://docs.mollie.com/reference/v2/refunds-api/cancel-refund
func (*RefundsService) Create ¶
func (rs *RefundsService) Create(paymentID string, re Refund, options *RefundOptions) (rf Refund, err error)
Create a refund payment request.
See https://docs.mollie.com/reference/v2/refunds-api/create-refund.
func (*RefundsService) Get ¶
func (rs *RefundsService) Get(paymentID, refundID string, options *RefundOptions) (refund Refund, err error)
Get retrieve a single refund by its ID.
If you do not know the original payment’s ID, you can use the List payment refunds endpoint.
func (*RefundsService) ListRefund ¶
func (rs *RefundsService) ListRefund(options *ListRefundOptions) (rl *RefundList, err error)
ListRefund calls the top level https://api.mollie.com/v2/refunds.
See https://docs.mollie.com/reference/v2/refunds-api/list-refunds.
func (*RefundsService) ListRefundPayment ¶
func (rs *RefundsService) ListRefundPayment(paymentID string, options *ListRefundOptions) (rl *RefundList, err error)
ListRefundPayment calls the payment-specific https://api.mollie.com/v2/payments/*paymentId*/refunds. Only refunds for that specific payment are returned. See https://docs.mollie.com/reference/v2/refunds-api/list-refunds
type Response ¶
Response is a Mollie API response. This wraps the standard http.Response returned from Mollie and provides convenient access to things like pagination links.
type SequenceType ¶
type SequenceType string
SequenceType indicates which type of payment this is in a recurring sequence.
const ( OneOffSequence SequenceType = "oneoff" FirstSequence SequenceType = "first" RecurringSequence SequenceType = "recurring" )
Valid sequence types
type Settlement ¶
type Settlement struct { ID string `json:"id,omitempty"` Resource string `json:"resource,omitempty"` Reference string `json:"reference,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` SettledAt *time.Time `json:"settledAt,omitempty"` Status SettlementStatus `json:"status,omitempty"` Amount Amount `json:"amount,omitempty"` Periods SettlementObject `json:"periods,omitempty"` InvoiceID string `json:"invoiceId,omitempty"` Links SettlementLinks `json:"_links,omitempty"` }
Settlement contains successful payments, together with refunds, captures and chargebacks into settlements
type SettlementCosts ¶
type SettlementCosts struct { Description string `json:"description,omitempty"` AmountNet Amount `json:"amountNet,omitempty"` AmountVAT Amount `json:"amountVat,omitempty"` AmountGross Amount `json:"amountGross,omitempty"` Count int `json:"count,omitempty"` Rate Rate `json:"rate,omitempty"` Method PaymentMethod `json:"method,omitempty"` }
SettlementCosts contains information about costs related to a settlement
type SettlementLinks ¶
type SettlementLinks struct { Self URL `json:"self,omitempty"` Payments URL `json:"payments,omitempty"` Refunds URL `json:"refunds,omitempty"` Chargebacks URL `json:"chargebacks,omitempty"` Captures URL `json:"captures,omitempty"` Invoice URL `json:"invoice,omitempty"` Documentation URL `json:"documentation,omitempty"` }
SettlementLinks is an object with several URL objects relevant to the settlement
type SettlementObject ¶
type SettlementObject map[string]map[string]SettlementPeriod
SettlementObject nests as describes for settlement periods
type SettlementPeriod ¶
type SettlementPeriod struct { Revenue []SettlementRevenue `json:"revenue,omitempty"` Costs []SettlementCosts `json:"costs,omitempty"` }
SettlementPeriod describe the settlement by month in full detail
type SettlementRevenue ¶
type SettlementRevenue struct { Description string `json:"description,omitempty"` AmountNet Amount `json:"amountNet,omitempty"` AmountVAT Amount `json:"amountVat,omitempty"` AmountGross Amount `json:"amountGross,omitempty"` Count int `json:"count,omitempty"` Method PaymentMethod `json:"method,omitempty"` }
SettlementRevenue objects contain the total revenue for each payment method during this period
type SettlementStatus ¶
type SettlementStatus string
SettlementStatus describes the status of the settlement
type SettlementsList ¶
type SettlementsList struct { Count int `json:"count,omitempty"` Embedded struct { Settlements []Settlement } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
SettlementsList describes a list of settlements.
type SettlementsListOptions ¶
type SettlementsListOptions struct { From *ShortDate `url:"from,omitempty"` Limit int `url:"limit,omitempty"` Embed EmbedValue `url:"embed,omitempty"` }
SettlementsListOptions contains query parameters for settlement lists.
type SettlementsService ¶
type SettlementsService service
SettlementsService operates over settlements resource
func (*SettlementsService) Get ¶
func (ss *SettlementsService) Get(id string) (s *Settlement, err error)
Get returns a settlement by its id or the bank reference id
See: https://docs.mollie.com/reference/v2/settlements-api/get-settlement
func (*SettlementsService) GetCaptures ¶
func (ss *SettlementsService) GetCaptures(id string, slo *SettlementsListOptions) (cl *CapturesList, err error)
GetCaptures retrieves all captures included in a settlement.
See: https://docs.mollie.com/reference/v2/settlements-api/list-settlement-captures
func (*SettlementsService) GetChargebacks ¶
func (ss *SettlementsService) GetChargebacks(id string, slo *SettlementsListOptions) (cl *ChargebackList, err error)
GetChargebacks retrieves all chargebacks included in a settlement.
See: https://docs.mollie.com/reference/v2/settlements-api/list-settlement-chargebacks
func (*SettlementsService) GetPayments ¶
func (ss *SettlementsService) GetPayments(id string, slo *SettlementsListOptions) (pl *PaymentList, err error)
GetPayments retrieves all payments included in a settlement.
See: https://docs.mollie.com/reference/v2/settlements-api/list-settlement-payments
func (*SettlementsService) GetRefunds ¶
func (ss *SettlementsService) GetRefunds(id string, slo *SettlementsListOptions) (rl *RefundList, err error)
GetRefunds retrieves all refunds included in a settlement.
See: https://docs.mollie.com/reference/v2/settlements-api/list-settlement-refunds
func (*SettlementsService) List ¶
func (ss *SettlementsService) List(slo *SettlementsListOptions) (sl *SettlementsList, err error)
List retrieves all settlements, ordered from new to old
See: https://docs.mollie.com/reference/v2/settlements-api/list-settlements
func (*SettlementsService) Next ¶
func (ss *SettlementsService) Next() (s *Settlement, err error)
Next retrieves the details of the current settlement that has not yet been paid out.
See: https://docs.mollie.com/reference/v2/settlements-api/get-next-settlement
func (*SettlementsService) Open ¶
func (ss *SettlementsService) Open() (s *Settlement, err error)
Open retrieves the details of the open balance of the organization. This will return a settlement object representing your organization’s balance.
See: https://docs.mollie.com/reference/v2/settlements-api/get-open-settlement
type Shipment ¶
type Shipment struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` OrderID string `json:"orderId,omitempty"` CreatedAt *time.Time `json:"createdAt,omitempty"` Tracking ShipmentTracking `json:"tracking,omitempty"` Lines []OrderLine `json:"lines,omitempty"` Links ShipmentLinks `json:"_links,omitempty"` }
Shipment contains information about a user service/product delivery and is used in the figurative sense here. It can also mean that a service was provided or digital content was delivered.
type ShipmentLinks ¶
type ShipmentLinks struct { Self *URL `json:"self,omitempty"` Order *URL `json:"order,omitempty"` Documentation *URL `json:"documentation,omitempty"` }
ShipmentLinks contains URL objects with shipment relevant information for the user.
type ShipmentTracking ¶
type ShipmentTracking struct { Carrier string `json:"carrier,omitempty"` Code string `json:"code,omitempty"` URL string `json:"url,omitempty"` }
ShipmentTracking contains shipment tracking details.
type ShipmentsList ¶
type ShipmentsList struct { Count int `json:"count,omitempty"` Embedded struct { Shipments []Shipment } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
ShipmentsList describes how a list of payments will be retrieved by Mollie.
type ShipmentsService ¶
type ShipmentsService service
ShipmentsService operates on shipments endpoints.
func (*ShipmentsService) Create ¶
func (ss *ShipmentsService) Create(oID string, cs CreateShipmentRequest) (s *Shipment, err error)
Create can be used to ship order lines.
See: https://docs.mollie.com/reference/v2/shipments-api/create-shipment
func (*ShipmentsService) Get ¶
func (ss *ShipmentsService) Get(oID string, sID string) (s *Shipment, err error)
Get retrieves a single shipment and the order lines shipped by a shipment’s ID.
See: https://docs.mollie.com/reference/v2/shipments-api/get-shipment#
func (*ShipmentsService) List ¶
func (ss *ShipmentsService) List(oID string) (sl *ShipmentsList, err error)
List retrieves all shipments for an order.
See: https://docs.mollie.com/reference/v2/shipments-api/list-shipments
func (*ShipmentsService) Update ¶
func (ss *ShipmentsService) Update(oID string, sID string, st ShipmentTracking) (s *Shipment, err error)
Update can be used to update the tracking information of a shipment
See: https://docs.mollie.com/reference/v2/shipments-api/update-shipment
type ShortDate ¶
ShortDate is a string representing a date in YYYY-MM-DD format.
func (*ShortDate) MarshalJSON ¶ added in v1.4.0
MarshalJSON overrides the default marshal action for the Date struct. Returns date as YYYY-MM-DD formatted string.
func (*ShortDate) UnmarshalJSON ¶
UnmarshalJSON overrides the default unmarshal action for the Date struct, as we need links to be pointers to the time.Time struct.
type Subscription ¶
type Subscription struct { Resource string `json:"resource,omitempty"` ID string `json:"id,omitempty"` MandateID string `json:"mandateId,omitempty"` Mode Mode `json:"mode,omitempty"` CreatedAT *time.Time `json:"createdAt,omitempty"` Status SubscriptionStatus `json:"status,omitempty"` Amount *Amount `json:"amount,omitempty"` Times int `json:"times,omitempty"` TimesRemaining int `json:"timesRemaining,omitempty"` Interval string `json:"interval,omitempty"` StartDate *ShortDate `json:"startDate,omitempty"` NextPaymentDate *ShortDate `json:"nextPaymentDate,omitempty"` Description string `json:"description,omitempty"` Method PaymentMethod `json:"method,omitempty"` CanceledAt *time.Time `json:"canceledAt,omitempty"` WebhookURL string `json:"webhookUrl,omitempty"` Metadata map[string]interface{} `json:"metadata,omitempty"` ApplicationFee ApplicationFee `json:"applicationFee,omitempty"` Links SubscriptionLinks `json:"_links,omitempty"` }
Subscription contains information about a customer subscription
type SubscriptionLinks ¶
type SubscriptionLinks struct { Self *URL `json:"self,omitempty"` Customer *URL `json:"customer,omitempty"` Payments *URL `json:"payments,omitempty"` Documentation *URL `json:"documentation,omitempty"` }
SubscriptionLinks contains several URL objects relevant to the subscription
type SubscriptionList ¶
type SubscriptionList struct { Count int `json:"count,omitempty"` Embedded struct { Subscriptions []Subscription } `json:"_embedded,omitempty"` Links PaginationLinks `json:"_links,omitempty"` }
SubscriptionList describes the response for subscription list endpoints
type SubscriptionListOptions ¶
type SubscriptionListOptions struct { From string `url:"from,omitempty"` Limit int `url:"limit,omitempty"` ProfileID string `url:"profileId,omitempty"` }
SubscriptionListOptions holds query string parameters valid for subscription lists
type SubscriptionStatus ¶
type SubscriptionStatus string
SubscriptionStatus contains references to valid subscription statuses
const ( SubscriptionStatusPending SubscriptionStatus = "pending" SubscriptionStatusActive SubscriptionStatus = "active" SubscriptionStatusCanceled SubscriptionStatus = "canceled" SubscriptionStatusSuspended SubscriptionStatus = "suspended" SubscriptionStatusCompleted SubscriptionStatus = "completed" )
Available subscription statuses
type SubscriptionsService ¶
type SubscriptionsService service
SubscriptionsService operates over subscriptions resource
func (*SubscriptionsService) All ¶
func (ss *SubscriptionsService) All(options *SubscriptionListOptions) (sl *SubscriptionList, err error)
All retrieves all subscriptions, ordered from newest to oldest. By using an API key all the subscriptions created with the current website profile will be returned. In the case of an OAuth Access Token relies the website profile on the profileId field
See: https://docs.mollie.com/reference/v2/subscriptions-api/list-all-subscriptions
func (*SubscriptionsService) Create ¶
func (ss *SubscriptionsService) Create(cID string, sc *Subscription) (s *Subscription, err error)
Create stores a new subscription for a given customer
See: https://docs.mollie.com/reference/v2/subscriptions-api/create-subscription
func (*SubscriptionsService) Delete ¶
func (ss *SubscriptionsService) Delete(cID, sID string) (s *Subscription, err error)
Delete cancels a subscription
See: https://docs.mollie.com/reference/v2/subscriptions-api/cancel-subscription
func (*SubscriptionsService) Get ¶
func (ss *SubscriptionsService) Get(cID, sID string) (s *Subscription, err error)
Get retrieves a customer's subscription
See: https://docs.mollie.com/reference/v2/subscriptions-api/get-subscription
func (*SubscriptionsService) GetPayments ¶
func (ss *SubscriptionsService) GetPayments(cID, sID string, options *SubscriptionListOptions) (sl *PaymentList, err error)
GetPayments retrieves all payments of a specific subscriptions of a customer
See: https://docs.mollie.com/reference/v2/subscriptions-api/list-subscriptions-payments
func (*SubscriptionsService) List ¶
func (ss *SubscriptionsService) List(cID string, options *SubscriptionListOptions) (sl *SubscriptionList, err error)
List retrieves all subscriptions of a customer
See: https://docs.mollie.com/reference/v2/subscriptions-api/list-subscriptions
func (*SubscriptionsService) Update ¶
func (ss *SubscriptionsService) Update(cID, sID string, sc *Subscription) (s *Subscription, err error)
Update changes fields on a subscription object
See: https://docs.mollie.com/reference/v2/subscriptions-api/update-subscription
type UsedGiftCard ¶
type UsedGiftCard struct { Issuer string `json:"issuer,omitempty"` Amount *Amount `json:"amount,omitempty"` VoucherNumber string `json:"voucherNumber,omitempty"` }
UsedGiftCard describes a used gift card.