MM-12881 Add license sku fields (#9883)

* Add license sku fields

* Add diagnostics

* Gofmt fixes
Этот коммит содержится в:
Joram Wilander
2018-11-28 09:49:43 -05:00
коммит произвёл GitHub
родитель 2e4373f91c
Коммит 3904c01f46
5 изменённых файлов: 23 добавлений и 11 удалений

Просмотреть файл

@@ -21,12 +21,14 @@ type LicenseRecord struct {
}
type License struct {
Id string `json:"id"`
IssuedAt int64 `json:"issued_at"`
StartsAt int64 `json:"starts_at"`
ExpiresAt int64 `json:"expires_at"`
Customer *Customer `json:"customer"`
Features *Features `json:"features"`
Id string `json:"id"`
IssuedAt int64 `json:"issued_at"`
StartsAt int64 `json:"starts_at"`
ExpiresAt int64 `json:"expires_at"`
Customer *Customer `json:"customer"`
Features *Features `json:"features"`
SkuName string `json:"sku_name"`
SkuShortName string `json:"sku_short_name"`
}
type Customer struct {