fix: correct mismatches between template-apply spec and impl (#157)
This commit is contained in:
@ -16,7 +16,7 @@ import (
|
||||
|
||||
// TemplateSummaryCheckAllOf struct for TemplateSummaryCheckAllOf
|
||||
type TemplateSummaryCheckAllOf struct {
|
||||
Id string `json:"id" yaml:"id"`
|
||||
Id uint64 `json:"id" yaml:"id"`
|
||||
Name string `json:"name" yaml:"name"`
|
||||
Description *string `json:"description,omitempty" yaml:"description,omitempty"`
|
||||
}
|
||||
@ -25,7 +25,7 @@ type TemplateSummaryCheckAllOf struct {
|
||||
// This constructor will assign default values to properties that have it defined,
|
||||
// and makes sure properties required by API are set, but the set of arguments
|
||||
// will change when the set of required properties is changed
|
||||
func NewTemplateSummaryCheckAllOf(id string, name string) *TemplateSummaryCheckAllOf {
|
||||
func NewTemplateSummaryCheckAllOf(id uint64, name string) *TemplateSummaryCheckAllOf {
|
||||
this := TemplateSummaryCheckAllOf{}
|
||||
this.Id = id
|
||||
this.Name = name
|
||||
@ -41,9 +41,9 @@ func NewTemplateSummaryCheckAllOfWithDefaults() *TemplateSummaryCheckAllOf {
|
||||
}
|
||||
|
||||
// GetId returns the Id field value
|
||||
func (o *TemplateSummaryCheckAllOf) GetId() string {
|
||||
func (o *TemplateSummaryCheckAllOf) GetId() uint64 {
|
||||
if o == nil {
|
||||
var ret string
|
||||
var ret uint64
|
||||
return ret
|
||||
}
|
||||
|
||||
@ -52,7 +52,7 @@ func (o *TemplateSummaryCheckAllOf) GetId() string {
|
||||
|
||||
// GetIdOk returns a tuple with the Id field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *TemplateSummaryCheckAllOf) GetIdOk() (*string, bool) {
|
||||
func (o *TemplateSummaryCheckAllOf) GetIdOk() (*uint64, bool) {
|
||||
if o == nil {
|
||||
return nil, false
|
||||
}
|
||||
@ -60,7 +60,7 @@ func (o *TemplateSummaryCheckAllOf) GetIdOk() (*string, bool) {
|
||||
}
|
||||
|
||||
// SetId sets field value
|
||||
func (o *TemplateSummaryCheckAllOf) SetId(v string) {
|
||||
func (o *TemplateSummaryCheckAllOf) SetId(v uint64) {
|
||||
o.Id = v
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user