Skip to content

Commit

Permalink
added encrypted key to struct (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
gioelecerati authored Jun 23, 2023
1 parent 4eb9387 commit e2fa42c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions api.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,9 @@ type (
UploadTaskParams struct {
URL string `json:"url,omitempty"`
Encryption struct {
Key string `json:"key"`
Algorithm string `json:"algorithm,omitempty"`
EncryptedKey string `json:"encryptedKey,omitempty"`
Key string `json:"key,omitempty"`
Algorithm string `json:"algorithm,omitempty"`
} `json:"encryption,omitempty"`
RecordedSessionID string `json:"recordedSessionId,omitempty"`
UploadedObjectKey string `json:"uploadedObjectKey,omitempty"`
Expand Down

0 comments on commit e2fa42c

Please sign in to comment.