mirror of
https://github.com/plutov/paypal.git
synced 2025-02-09 02:14:55 +01:00
merge structs
This commit is contained in:
parent
65a74578c8
commit
838828c020
30
billing.go
30
billing.go
|
@ -8,26 +8,6 @@ import (
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
|
||||||
// CreateAgreementResp struct
|
|
||||||
CreateAgreementResp struct {
|
|
||||||
ID string `json:"id,omitempty"`
|
|
||||||
Name string `json:"name,omitempty"`
|
|
||||||
Description string `json:"description,omitempty"`
|
|
||||||
Plan BillingPlan `json:"plan,omitempty"`
|
|
||||||
Links []Link `json:"links,omitempty"`
|
|
||||||
StartTime time.Time `json:"start_time,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// ListBillingPlansResp struct
|
|
||||||
ListBillingPlansResp struct {
|
|
||||||
TotalItems string `json:"total_items,omitempty"`
|
|
||||||
TotalPages string `json:"total_pages,omitempty"`
|
|
||||||
Plans []BillingPlan `json:"plans,omitempty"`
|
|
||||||
Links []Link `json:"links,omitempty"`
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// ActivatePlan activates a billing plan.
|
// ActivatePlan activates a billing plan.
|
||||||
// By default, a new plan is not activated.
|
// By default, a new plan is not activated.
|
||||||
// Endpoint: PATCH /v1/payments/billing-plans/
|
// Endpoint: PATCH /v1/payments/billing-plans/
|
||||||
|
@ -77,14 +57,14 @@ func (c *Client) CreateBillingPlan(plan BillingPlan) (*BillingPlan, error) {
|
||||||
|
|
||||||
// CreateBillingAgreement creates an agreement for specified plan.
|
// CreateBillingAgreement creates an agreement for specified plan.
|
||||||
// Endpoint: POST /v1/payments/billing-agreements
|
// Endpoint: POST /v1/payments/billing-agreements
|
||||||
func (c *Client) CreateBillingAgreement(a BillingAgreement) (*CreateAgreementResp, error) {
|
func (c *Client) CreateBillingAgreement(a BillingAgreement) (*BillingAgreement, error) {
|
||||||
// PayPal needs only ID, so we will remove all fields except Plan ID
|
// PayPal needs only ID, so we will remove all fields except Plan ID
|
||||||
a.Plan = BillingPlan{
|
a.Plan = BillingPlan{
|
||||||
ID: a.Plan.ID,
|
ID: a.Plan.ID,
|
||||||
}
|
}
|
||||||
|
|
||||||
req, err := c.NewRequest("POST", fmt.Sprintf("%s%s", c.APIBase, "/v1/payments/billing-agreements"), a)
|
req, err := c.NewRequest("POST", fmt.Sprintf("%s%s", c.APIBase, "/v1/payments/billing-agreements"), a)
|
||||||
response := &CreateAgreementResp{}
|
response := &BillingAgreement{}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return response, err
|
return response, err
|
||||||
}
|
}
|
||||||
|
@ -107,16 +87,16 @@ func (c *Client) DeletePlan(planID string) error {
|
||||||
|
|
||||||
// ExecuteApprovedAgreement - Use this call to execute (complete) a PayPal agreement that has been approved by the payer.
|
// ExecuteApprovedAgreement - Use this call to execute (complete) a PayPal agreement that has been approved by the payer.
|
||||||
// Endpoint: POST /v1/payments/billing-agreements/token/agreement-execute
|
// Endpoint: POST /v1/payments/billing-agreements/token/agreement-execute
|
||||||
func (c *Client) ExecuteApprovedAgreement(token string) (*ExecuteAgreementResponse, error) {
|
func (c *Client) ExecuteApprovedAgreement(token string) (*BillingAgreement, error) {
|
||||||
req, err := http.NewRequest("POST", fmt.Sprintf("%s%s", c.APIBase, "/v1/payments/billing-agreements/"+token+"/agreement-execute"), nil)
|
req, err := http.NewRequest("POST", fmt.Sprintf("%s%s", c.APIBase, "/v1/payments/billing-agreements/"+token+"/agreement-execute"), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return &ExecuteAgreementResponse{}, err
|
return &BillingAgreement{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
req.SetBasicAuth(c.ClientID, c.Secret)
|
req.SetBasicAuth(c.ClientID, c.Secret)
|
||||||
req.Header.Set("Authorization", "Bearer "+c.Token.Token)
|
req.Header.Set("Authorization", "Bearer "+c.Token.Token)
|
||||||
|
|
||||||
e := ExecuteAgreementResponse{}
|
e := BillingAgreement{}
|
||||||
|
|
||||||
if err = c.SendWithAuth(req, &e); err != nil {
|
if err = c.SendWithAuth(req, &e); err != nil {
|
||||||
return &e, err
|
return &e, err
|
||||||
|
|
37
types.go
37
types.go
|
@ -121,12 +121,16 @@ type (
|
||||||
|
|
||||||
// BillingAgreement struct
|
// BillingAgreement struct
|
||||||
BillingAgreement struct {
|
BillingAgreement struct {
|
||||||
Name string `json:"name,omitempty"`
|
ID string `json:"id,omitempty"`
|
||||||
Description string `json:"description,omitempty"`
|
Name string `json:"name,omitempty"`
|
||||||
StartDate JSONTime `json:"start_date,omitempty"`
|
Description string `json:"description,omitempty"`
|
||||||
Plan BillingPlan `json:"plan,omitempty"`
|
StartDate JSONTime `json:"start_date,omitempty"`
|
||||||
Payer Payer `json:"payer,omitempty"`
|
Plan BillingPlan `json:"plan,omitempty"`
|
||||||
ShippingAddress *ShippingAddress `json:"shipping_address,omitempty"`
|
Payer Payer `json:"payer,omitempty"`
|
||||||
|
ShippingAddress *ShippingAddress `json:"shipping_address,omitempty"`
|
||||||
|
State string `json:"state,omitempty"`
|
||||||
|
AgreementDetails AgreementDetails `json:"agreement_details"`
|
||||||
|
Links []Link `json:"links"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// BillingPlan struct
|
// BillingPlan struct
|
||||||
|
@ -252,19 +256,6 @@ type (
|
||||||
Details []ErrorResponseDetail `json:"details"`
|
Details []ErrorResponseDetail `json:"details"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ExecuteAgreementResponse struct
|
|
||||||
ExecuteAgreementResponse struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
State string `json:"state"`
|
|
||||||
Description string `json:"description,omitempty"`
|
|
||||||
Payer Payer `json:"payer"`
|
|
||||||
Plan BillingPlan `json:"plan"`
|
|
||||||
StartDate time.Time `json:"start_date"`
|
|
||||||
ShippingAddress ShippingAddress `json:"shipping_address"`
|
|
||||||
AgreementDetails AgreementDetails `json:"agreement_details"`
|
|
||||||
Links []Link `json:"links"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExecuteResponse struct
|
// ExecuteResponse struct
|
||||||
ExecuteResponse struct {
|
ExecuteResponse struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
|
@ -305,6 +296,14 @@ type (
|
||||||
Enctype string `json:"enctype,omitempty"`
|
Enctype string `json:"enctype,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ListBillingPlansResp struct
|
||||||
|
ListBillingPlansResp struct {
|
||||||
|
TotalItems string `json:"total_items,omitempty"`
|
||||||
|
TotalPages string `json:"total_pages,omitempty"`
|
||||||
|
Plans []BillingPlan `json:"plans,omitempty"`
|
||||||
|
Links []Link `json:"links,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
// MerchantPreferences struct
|
// MerchantPreferences struct
|
||||||
MerchantPreferences struct {
|
MerchantPreferences struct {
|
||||||
SetupFee *AmountPayout `json:"setup_fee,omitempty"`
|
SetupFee *AmountPayout `json:"setup_fee,omitempty"`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user