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 { type CredentialRepresentation struct {
Algorithm *string `json:"algorithm,omitempty"` Id *string `json:"id,omitempty"`
Config *MultivaluedHashMap `json:"config,omitempty"` Algorithm *string `json:"algorithm,omitempty"`
Counter *int32 `json:"counter,omitempty"` Config *map[string][]string `json:"config,omitempty"`
CreatedDate *int64 `json:"createdDate,omitempty"` Counter *int32 `json:"counter,omitempty"`
Device *string `json:"device,omitempty"` CreatedDate *int64 `json:"createdDate,omitempty"`
Digits *int32 `json:"digits,omitempty"` Device *string `json:"device,omitempty"`
HashIterations *int32 `json:"hashIterations,omitempty"` Digits *int32 `json:"digits,omitempty"`
HashedSaltedValue *string `json:"hashedSaltedValue,omitempty"` HashIterations *int32 `json:"hashIterations,omitempty"`
Period *int32 `json:"period,omitempty"` HashedSaltedValue *string `json:"hashedSaltedValue,omitempty"`
Salt *string `json:"salt,omitempty"` Period *int32 `json:"period,omitempty"`
Temporary *bool `json:"temporary,omitempty"` Salt *string `json:"salt,omitempty"`
Type *string `json:"type,omitempty"` Temporary *bool `json:"temporary,omitempty"`
Value *string `json:"value,omitempty"` Type *string `json:"type,omitempty"`
Value *string `json:"value,omitempty"`
} }
type EventRepresentation struct { type EventRepresentation struct {

Loading…
Cancel
Save