Skip to content

Commit

Permalink
fix: json props for securitysettins now camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
rsdmike committed Sep 3, 2024
1 parent 8b81dc0 commit 64c65a3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions internal/entity/dto/securitysettings.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ package dto

type (
SecuritySettings struct {
ProfileAssociation []ProfileAssociation `json:"ProfileAssociation"`
Certificates interface{} `json:"Certificates"`
Keys interface{} `json:"PublicKeys"`
ProfileAssociation []ProfileAssociation `json:"profileAssociation"`
Certificates interface{} `json:"certificates"`
Keys interface{} `json:"publicKeys"`
}

ProfileAssociation struct {
Type string `json:"Type"`
ProfileID string `json:"ProfileID"`
RootCertificate interface{} `json:"RootCertificate,omitempty"`
ClientCertificate interface{} `json:"ClientCertificate,omitempty"`
Key interface{} `json:"PublicKey,omitempty"`
Type string `json:"type"`
ProfileID string `json:"profileID"`
RootCertificate interface{} `json:"rootCertificate,omitempty"`
ClientCertificate interface{} `json:"clientCertificate,omitempty"`
Key interface{} `json:"publicKey,omitempty"`
}
)

0 comments on commit 64c65a3

Please sign in to comment.