traefik/vendor/github.com/sacloud/libsacloud/sacloud/prop_job_status.go
Ludovic Fernandez 139f280f35 ACME TLS ALPN
2018-07-03 12:44:04 +02:00

11 lines
381 B
Go

package sacloud
// propJobStatus マイグレーションジョブステータス内包型
type propJobStatus struct {
JobStatus *MigrationJobStatus `json:",omitempty"` // マイグレーションジョブステータス
}
// GetJobStatus マイグレーションジョブステータス 取得
func (p *propJobStatus) GetJobStatus() *MigrationJobStatus {
return p.JobStatus
}