Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue #68 #69

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/cph/v1/model/model_phone.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type Phone struct {
ImageId *string `json:"image_id,omitempty"`

// 云手机是否开启VNC服务。 - true:开启 - false:不开启
VncEnable *string `json:"vnc_enable,omitempty"`
VncEnable *bool `json:"vnc_enable,omitempty"`

// 云手机状态。 - 0: 创建中 - 1:创建中 - 2:运行中 - 3:重置中 - 4:重启中 - 6:冻结 - 7:正在关机 - 8:已关机 - -5:重置失败 - -6:重启失败 - -7:手机异常 - -8:创建失败 - -9:关机失败
Status *int32 `json:"status,omitempty"`
Expand Down