Skip to content

Commit

Permalink
Add profiles field to upload task (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjh1 committed Feb 8, 2024
1 parent 9c7e970 commit 0143265
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions api.go
Expand Up @@ -294,11 +294,12 @@ type (
Key string `json:"key,omitempty"`
Algorithm string `json:"algorithm,omitempty"`
} `json:"encryption,omitempty"`
RecordedSessionID string `json:"recordedSessionId,omitempty"`
UploadedObjectKey string `json:"uploadedObjectKey,omitempty"`
CatalystPipelineStrategy string `json:"catalystPipelineStrategy,omitempty"`
Thumbnails bool `json:"thumbnails"`
C2PA bool `json:"c2pa,omitempty"`
RecordedSessionID string `json:"recordedSessionId,omitempty"`
UploadedObjectKey string `json:"uploadedObjectKey,omitempty"`
CatalystPipelineStrategy string `json:"catalystPipelineStrategy,omitempty"`
Thumbnails bool `json:"thumbnails"`
C2PA bool `json:"c2pa,omitempty"`
Profiles []Profile `json:"profiles,omitempty"`
}

ExportCustomParams struct {
Expand Down

0 comments on commit 0143265

Please sign in to comment.