21 lines
645 B
Go
21 lines
645 B
Go
/*
|
|
* HyperOne API
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 0.0.2
|
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
|
*/
|
|
|
|
package openapi
|
|
|
|
// ImageDisks struct for ImageDisks
|
|
type ImageDisks struct {
|
|
Type string `json:"type,omitempty"`
|
|
Size float32 `json:"size,omitempty"`
|
|
FileSize float32 `json:"fileSize,omitempty"`
|
|
AttachedOn ImageAttachedOn `json:"attachedOn,omitempty"`
|
|
DownloadUrl string `json:"downloadUrl,omitempty"`
|
|
Disk ImageDisk `json:"disk,omitempty"`
|
|
}
|