Skip to content

Commit

Permalink
Deploying from phrase/openapi@0e889a08
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Mar 19, 2021
1 parent 8a3ca96 commit ebac1f5
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
3 changes: 3 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -23017,6 +23018,8 @@ components:
updated_at:
format: date-time
type: string
company_logo_url:
type: string
title: account
type: object
account_details:
Expand Down
1 change: 1 addition & 0 deletions docs/Account.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
1 change: 1 addition & 0 deletions docs/AccountDetails.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
13 changes: 7 additions & 6 deletions model_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
13 changes: 7 additions & 6 deletions model_account_details.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

0 comments on commit ebac1f5

Please sign in to comment.