traefik/vendor/github.com/sacloud/libsacloud/sacloud/prop_service_class.go

12 lines
295 B
Go
Raw Normal View History

2018-07-03 10:44:04 +00:00
package sacloud
// propServiceClass サービスクラス内包型
type propServiceClass struct {
ServiceClass string `json:",omitempty"` // サービスクラス
}
// GetServiceClass サービスクラス 取得
func (p *propServiceClass) GetServiceClass() string {
return p.ServiceClass
}