Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
fix(createsvdrequest): fix CreateSVDRequest (#37)
Browse files Browse the repository at this point in the history
fix CreateSVDRequest
  • Loading branch information
XdpCs authored Feb 4, 2024
1 parent 6081319 commit 78411e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -1718,10 +1718,10 @@ type CreateVectorStudioResult struct {
type CreateSVDRequest struct {
InitImageUrl string `json:"init_image_url"`
Duration int `json:"duration"`
MotionAmplitude int `json:"motion_amplitude"`
NoiseIntensity float64 `json:"noise_intensity"`
RandomSeed string `json:"random_seed"`
ChargeType int `json:"charge_type"`
MotionAmplitude int `json:"motion_amplitude,omitempty"`
NoiseIntensity float64 `json:"noise_intensity,omitempty"`
RandomSeed string `json:"random_seed,omitempty"`
ChargeType int `json:"charge_type,omitempty"`
NotifyUrl string `json:"notify_url,omitempty"`
}

Expand Down

0 comments on commit 78411e6

Please sign in to comment.