25 lines
432 B
Go
25 lines
432 B
Go
package accounts
|
|
|
|
import "time"
|
|
|
|
type Status string
|
|
|
|
const (
|
|
StatusActive Status = "active"
|
|
StatusArchived Status = "archived"
|
|
)
|
|
|
|
type Account struct {
|
|
ID string
|
|
TenantID string
|
|
Name string
|
|
LegalName *string
|
|
Document *string
|
|
Website *string
|
|
Industry *string
|
|
Size *string
|
|
Status Status
|
|
ExternalRefs map[string]string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|