Skip to content

Commit

Permalink
Fix LiquidationDate type.
Browse files Browse the repository at this point in the history
  • Loading branch information
turboezh committed Apr 8, 2019
1 parent b1e2cce commit 16c03be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions model.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ type OrganizationState struct {
// ACTIVE — действующая
// LIQUIDATING — ликвидируется
// LIQUIDATED — ликвидирована
ActualityDate int64 `json:"actuality_date"` // Дата актуальности сведений
RegistrationDate int64 `json:"registration_date"` // Дата регистрации
LiquidationDate string `json:"liquidation_date"` // Дата ликвидации
ActualityDate int64 `json:"actuality_date"` // Дата актуальности сведений
RegistrationDate int64 `json:"registration_date"` // Дата регистрации
LiquidationDate int64 `json:"liquidation_date"` // Дата ликвидации
}

// Party base struct for dadata.Party (rus Организация)
Expand Down

0 comments on commit 16c03be

Please sign in to comment.