Browse Source

Update CredentialRepresentation model

master
sispeo 7 years ago
committed by harture
parent
commit
6392a53924
  1. 27
      definitions.go

27
definitions.go

@ -201,19 +201,20 @@ type ConfigPropertyRepresentation struct {
}
type CredentialRepresentation struct {
Algorithm *string `json:"algorithm,omitempty"`
Config *MultivaluedHashMap `json:"config,omitempty"`
Counter *int32 `json:"counter,omitempty"`
CreatedDate *int64 `json:"createdDate,omitempty"`
Device *string `json:"device,omitempty"`
Digits *int32 `json:"digits,omitempty"`
HashIterations *int32 `json:"hashIterations,omitempty"`
HashedSaltedValue *string `json:"hashedSaltedValue,omitempty"`
Period *int32 `json:"period,omitempty"`
Salt *string `json:"salt,omitempty"`
Temporary *bool `json:"temporary,omitempty"`
Type *string `json:"type,omitempty"`
Value *string `json:"value,omitempty"`
Id *string `json:"id,omitempty"`
Algorithm *string `json:"algorithm,omitempty"`
Config *map[string][]string `json:"config,omitempty"`
Counter *int32 `json:"counter,omitempty"`
CreatedDate *int64 `json:"createdDate,omitempty"`
Device *string `json:"device,omitempty"`
Digits *int32 `json:"digits,omitempty"`
HashIterations *int32 `json:"hashIterations,omitempty"`
HashedSaltedValue *string `json:"hashedSaltedValue,omitempty"`
Period *int32 `json:"period,omitempty"`
Salt *string `json:"salt,omitempty"`
Temporary *bool `json:"temporary,omitempty"`
Type *string `json:"type,omitempty"`
Value *string `json:"value,omitempty"`
}
type EventRepresentation struct {

Loading…
Cancel
Save