13 lines
283 B
Go
13 lines
283 B
Go
|
package eak
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type ExternalAccountKey struct {
|
||
|
ID string `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
AccountID string `json:"-"`
|
||
|
KeyBytes []byte `json:"-"`
|
||
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
BoundAt time.Time `json:"boundAt,omitempty"`
|
||
|
}
|