diff --git a/api/openapi.yaml b/api/openapi.yaml index 8f3ddc4..9bd94f8 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -23002,6 +23002,7 @@ components: company: My Awesome Company created_at: 2015-01-28T09:52:53Z updated_at: 2015-01-28T09:52:53Z + company_logo_url: http://assets.example.com/company_logo.png properties: id: type: string @@ -23017,6 +23018,8 @@ components: updated_at: format: date-time type: string + company_logo_url: + type: string title: account type: object account_details: diff --git a/docs/Account.md b/docs/Account.md index 295c828..e121cc5 100644 --- a/docs/Account.md +++ b/docs/Account.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **Company** | **string** | | [optional] **CreatedAt** | [**time.Time**](time.Time.md) | | [optional] **UpdatedAt** | [**time.Time**](time.Time.md) | | [optional] +**CompanyLogoUrl** | **string** | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/AccountDetails.md b/docs/AccountDetails.md index d97c0f4..ed226b3 100644 --- a/docs/AccountDetails.md +++ b/docs/AccountDetails.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **Company** | **string** | | [optional] **CreatedAt** | [**time.Time**](time.Time.md) | | [optional] **UpdatedAt** | [**time.Time**](time.Time.md) | | [optional] +**CompanyLogoUrl** | **string** | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/model_account.go b/model_account.go index 560ca5a..d1d9968 100644 --- a/model_account.go +++ b/model_account.go @@ -6,10 +6,11 @@ import ( // Account struct for Account type Account struct { - Id string `json:"id,omitempty"` - Name string `json:"name,omitempty"` - Slug string `json:"slug,omitempty"` - Company string `json:"company,omitempty"` - CreatedAt time.Time `json:"created_at,omitempty"` - UpdatedAt time.Time `json:"updated_at,omitempty"` + Id string `json:"id,omitempty"` + Name string `json:"name,omitempty"` + Slug string `json:"slug,omitempty"` + Company string `json:"company,omitempty"` + CreatedAt time.Time `json:"created_at,omitempty"` + UpdatedAt time.Time `json:"updated_at,omitempty"` + CompanyLogoUrl string `json:"company_logo_url,omitempty"` } diff --git a/model_account_details.go b/model_account_details.go index bc25d73..fdb4cf1 100644 --- a/model_account_details.go +++ b/model_account_details.go @@ -6,10 +6,11 @@ import ( // AccountDetails struct for AccountDetails type AccountDetails struct { - Id string `json:"id,omitempty"` - Name string `json:"name,omitempty"` - Slug string `json:"slug,omitempty"` - Company string `json:"company,omitempty"` - CreatedAt time.Time `json:"created_at,omitempty"` - UpdatedAt time.Time `json:"updated_at,omitempty"` + Id string `json:"id,omitempty"` + Name string `json:"name,omitempty"` + Slug string `json:"slug,omitempty"` + Company string `json:"company,omitempty"` + CreatedAt time.Time `json:"created_at,omitempty"` + UpdatedAt time.Time `json:"updated_at,omitempty"` + CompanyLogoUrl string `json:"company_logo_url,omitempty"` }