package main import( "context" polargo "github.com/polarsource/polar-go" "log" ) func main() { ctx := context.Background() s := polargo.New() res, err := s.CustomerPortal.Downloadables.Get(ctx, "<value>") if err != nil { log.Fatal(err) } if res.Any != nil { // handle response } }
"<any>"
The response is of type any.
any
Was this page helpful?