Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetEntityPaymentMethodResponse ¶
type GetEntityPaymentMethodResponse struct { Details *model.EntityPaymentMethod `json:"details"` Request *GetEntityPaymentMethodRequest `json:"request"` }
type ListEntityPaymentMethodsRequest ¶
type ListEntityPaymentMethodsRequest struct { EntityId string `json:"entity_id"` Pagination *model.PaginationParams `json:"pagination_params"` }
type ListEntityPaymentMethodsResponse ¶
type ListEntityPaymentMethodsResponse struct { PaymentMethods []*model.EntityPaymentMethod `json:"payment_methods"` Request *ListEntityPaymentMethodsRequest `json:"request"` }
type PaymentMethodsService ¶
type PaymentMethodsService interface { ListEntityPaymentMethods(ctx context.Context, request *ListEntityPaymentMethodsRequest) (*ListEntityPaymentMethodsResponse, error) GetEntityPaymentMethod(ctx context.Context, request *GetEntityPaymentMethodRequest) (*GetEntityPaymentMethodResponse, error) }
func NewPaymentMethodsService ¶
func NewPaymentMethodsService(c client.RestClient) PaymentMethodsService
Click to show internal directories.
Click to hide internal directories.