func (c Client) List(params *stripe.FileUploadListParams) *Iter { var body *stripe.RequestValues var lp *stripe.ListParams var p *stripe.Params if params != nil { body = &stripe.RequestValues{} if len(params.Purpose) > 0 { body.Add("purpose", string(params.Purpose)) } params.AppendTo(body) lp = ¶ms.ListParams p = params.ToParams() } return &Iter{stripe.GetIter(lp, body, func(b *stripe.RequestValues) ([]interface{}, stripe.ListMeta, error) { list := &stripe.FileUploadList{} err := c.B.Call("GET", "/files", c.Key, b, p, list) ret := make([]interface{}, len(list.Values)) for i, v := range list.Values { ret[i] = v } return ret, list.ListMeta, err })} }
func (c Client) List(params *stripe.FileUploadListParams) *Iter { type fileUploadList struct { stripe.ListMeta Values []*stripe.FileUpload `json:"data"` } var body *url.Values var lp *stripe.ListParams if params != nil { body = &url.Values{} if len(params.Purpose) > 0 { body.Add("purpose", string(params.Purpose)) } params.AppendTo(body) lp = ¶ms.ListParams } return &Iter{stripe.GetIter(lp, body, func(b url.Values) ([]interface{}, stripe.ListMeta, error) { list := &fileUploadList{} err := c.B.Call("GET", "/files", c.Key, &b, nil, list) ret := make([]interface{}, len(list.Values)) for i, v := range list.Values { ret[i] = v } return ret, list.ListMeta, err })} }