当前位置: 首页>>代码示例>>Golang>>正文


Golang RefundParams.AppendTo方法代码示例

本文整理汇总了Golang中github.com/stripe/stripe-go.RefundParams.AppendTo方法的典型用法代码示例。如果您正苦于以下问题:Golang RefundParams.AppendTo方法的具体用法?Golang RefundParams.AppendTo怎么用?Golang RefundParams.AppendTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/stripe/stripe-go.RefundParams的用法示例。


在下文中一共展示了RefundParams.AppendTo方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: New

func (c Client) New(params *stripe.RefundParams) (*stripe.Refund, error) {
	body := &url.Values{}

	if params.Amount > 0 {
		body.Add("amount", strconv.FormatUint(params.Amount, 10))
	}

	if params.Fee {
		body.Add("refund_application_fee", strconv.FormatBool(params.Fee))
	}

	if params.Transfer {
		body.Add("refund_transfer", strconv.FormatBool(params.Transfer))
	}

	if len(params.Reason) > 0 {
		body.Add("reason", string(params.Reason))
	}

	params.AppendTo(body)

	refund := &stripe.Refund{}
	err := c.B.Call("POST", fmt.Sprintf("/charges/%v/refunds", params.Charge), c.Key, body, &params.Params, refund)

	return refund, err
}
开发者ID:zkirill,项目名称:stripe-go,代码行数:26,代码来源:client.go

示例2: Get

func (c Client) Get(id string, params *stripe.RefundParams) (*stripe.Refund, error) {
	body := &url.Values{}
	params.AppendTo(body)

	refund := &stripe.Refund{}
	err := c.B.Call("GET", fmt.Sprintf("/refunds/%v", id), c.Key, body, &params.Params, refund)

	return refund, err
}
开发者ID:mousadialo,项目名称:stripe-go,代码行数:9,代码来源:client.go

示例3: Update

func (c Client) Update(id string, params *stripe.RefundParams) (*stripe.Refund, error) {
	body := &url.Values{}

	params.AppendTo(body)

	refund := &stripe.Refund{}
	err := c.B.Call("POST", fmt.Sprintf("/charges/%v/refunds/%v", params.Charge, id), c.Key, body, &params.Params, refund)

	return refund, err
}
开发者ID:zkirill,项目名称:stripe-go,代码行数:10,代码来源:client.go

示例4: Get

func (c Client) Get(id string, params *stripe.RefundParams) (*stripe.Refund, error) {
	if params == nil {
		return nil, fmt.Errorf("params cannot be nil, and params.Charge must be set")
	}

	body := &url.Values{}
	params.AppendTo(body)

	refund := &stripe.Refund{}
	err := c.B.Call("GET", fmt.Sprintf("/charges/%v/refunds/%v", params.Charge, id), c.Key, body, &params.Params, refund)

	return refund, err
}
开发者ID:zkirill,项目名称:stripe-go,代码行数:13,代码来源:client.go

示例5: Get

func (c Client) Get(id string, params *stripe.RefundParams) (*stripe.Refund, error) {
	var body *stripe.RequestValues
	var commonParams *stripe.Params

	if params != nil {
		commonParams = &params.Params
		body = &stripe.RequestValues{}
		params.AppendTo(body)
	}

	refund := &stripe.Refund{}
	err := c.B.Call("GET", "/refunds/"+id, c.Key, body, commonParams, refund)

	return refund, err
}
开发者ID:captain401,项目名称:stripe-go,代码行数:15,代码来源:client.go


注:本文中的github.com/stripe/stripe-go.RefundParams.AppendTo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。