9 lines
210 B
Go
9 lines
210 B
Go
package sacloud
|
|
|
|
// Member 会員情報
|
|
type Member struct {
|
|
Class string `json:",omitempty"` // クラス
|
|
Code string `json:",omitempty"` // 会員コード
|
|
|
|
// Errors [unknown type] `json:",omitempty"`
|
|
}
|