func (c *Client) GetCards(token string) (cards []Card, err error) {
    res, err := c.request(token, "GET", "/billing/cards", nil)
    if err != nil {
        return nil, err
    }