#lumix
1 messages · Page 1 of 1 (latest)
What is line 17 in your code?
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
I believe that's because CreatedRange is nil, try something like
params := &stripe.ChargeListParams{
CreatedRange: &stripe.RangeQueryParams{
GreaterThanOrEqual: 1688853600
}
}
yes, this works.. sure im super washed..
thanks a lot for the quick help, jack!