Skip to content

Commit

Permalink
Merge pull request aiven#162 from aiven/ivans-add-account-primary-bg-id
Browse files Browse the repository at this point in the history
add support for primary_billing_group_id to account
  • Loading branch information
mlatief authored Apr 14, 2022
2 parents bab1079 + 240634e commit 5a32f70
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ type (

// Account represents account
Account struct {
Id string `json:"account_id,omitempty"`
Name string `json:"account_name"`
OwnerTeamId string `json:"account_owner_team_id,omitempty"`
CreateTime *time.Time `json:"create_time,omitempty"`
UpdateTime *time.Time `json:"update_time,omitempty"`
BillingEnabled bool `json:"account_billing_enabled,omitempty"`
TenantId string `json:"tenant_id,omitempty"`
Id string `json:"account_id,omitempty"`
Name string `json:"account_name"`
OwnerTeamId string `json:"account_owner_team_id,omitempty"`
CreateTime *time.Time `json:"create_time,omitempty"`
UpdateTime *time.Time `json:"update_time,omitempty"`
BillingEnabled bool `json:"account_billing_enabled,omitempty"`
TenantId string `json:"tenant_id,omitempty"`
PrimaryBillingGroupId string `json:"primary_billing_group_id,omitempty"`
}
)

Expand Down

0 comments on commit 5a32f70

Please sign in to comment.