#lumix

1 messages · Page 1 of 1 (latest)

south portalBOT
torpid finch
#

What is line 17 in your code?

compact fog
#

params.CreatedRange.GreaterThanOrEqual = 1688853600

#

which also seems to cause the issue, just super confused because for me it looks like i assigned the var correct

#

okay, seems like i figured out.. it seemed to work like this

torpid finch
#

I believe that's because CreatedRange is nil, try something like

params := &stripe.ChargeListParams{
  CreatedRange: &stripe.RangeQueryParams{
     GreaterThanOrEqual: 1688853600
  }
}
compact fog
#

thanks a lot for the quick help, jack!