22 lines
460 B
Go
22 lines
460 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
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type InlineResponse200 struct {
|
|
Name string `json:"name"`
|
|
CreatedOn time.Time `json:"createdOn"`
|
|
CreatedBy string `json:"createdBy"`
|
|
Type string `json:"type"`
|
|
Value string `json:"value"`
|
|
}
|