435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package linodego
|
|
|
|
import "context"
|
|
|
|
// Account associated with the token in use
|
|
type Account struct {
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
Email string `json:"email"`
|
|
Company string `json:"company"`
|
|
Address1 string `json:"address_1"`
|
|
Address2 string `json:"address_2"`
|
|
Balance float32 `json:"balance"`
|
|
City string `json:"city"`
|
|
State string `json:"state"`
|
|
Zip string `json:"zip"`
|
|
Country string `json:"country"`
|
|
TaxID string `json:"tax_id"`
|
|
Phone string `json:"phone"`
|
|
CreditCard *CreditCard `json:"credit_card"`
|
|
}
|
|
|
|
// CreditCard information associated with the Account.
|
|
type CreditCard struct {
|
|
LastFour string `json:"last_four"`
|
|
Expiry string `json:"expiry"`
|
|
}
|
|
|
|
// fixDates converts JSON timestamps to Go time.Time values
|
|
func (v *Account) fixDates() *Account {
|
|
return v
|
|
}
|
|
|
|
// GetAccount gets the contact and billing information related to the Account
|
|
func (c *Client) GetAccount(ctx context.Context) (*Account, error) {
|
|
e, err := c.Account.Endpoint()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
r, err := coupleAPIErrors(c.R(ctx).SetResult(&Account{}).Get(e))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return r.Result().(*Account).fixDates(), nil
|
|
}
|