@@ -851,7 +851,7 @@ func (c *ConditionalFormat) SetPalette(v string) {
851851}
852852
853853// GetValue returns the Value field if non-nil, zero value otherwise.
854- func (c * ConditionalFormat ) GetValue () string {
854+ func (c * ConditionalFormat ) GetValue () json. Number {
855855 if c == nil || c .Value == nil {
856856 return ""
857857 }
@@ -860,7 +860,7 @@ func (c *ConditionalFormat) GetValue() string {
860860
861861// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
862862// and a boolean to check if the value has been set.
863- func (c * ConditionalFormat ) GetValueOk () (string , bool ) {
863+ func (c * ConditionalFormat ) GetValueOk () (json. Number , bool ) {
864864 if c == nil || c .Value == nil {
865865 return "" , false
866866 }
@@ -877,7 +877,7 @@ func (c *ConditionalFormat) HasValue() bool {
877877}
878878
879879// SetValue allocates a new c.Value and returns the pointer to it.
880- func (c * ConditionalFormat ) SetValue (v string ) {
880+ func (c * ConditionalFormat ) SetValue (v json. Number ) {
881881 c .Value = & v
882882}
883883
@@ -6555,18 +6555,18 @@ func (s *Screenboard) SetTitle(v string) {
65556555}
65566556
65576557// GetWidth returns the Width field if non-nil, zero value otherwise.
6558- func (s * Screenboard ) GetWidth () int {
6558+ func (s * Screenboard ) GetWidth () json. Number {
65596559 if s == nil || s .Width == nil {
6560- return 0
6560+ return ""
65616561 }
65626562 return * s .Width
65636563}
65646564
65656565// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
65666566// and a boolean to check if the value has been set.
6567- func (s * Screenboard ) GetWidthOk () (int , bool ) {
6567+ func (s * Screenboard ) GetWidthOk () (json. Number , bool ) {
65686568 if s == nil || s .Width == nil {
6569- return 0 , false
6569+ return "" , false
65706570 }
65716571 return * s .Width , true
65726572}
@@ -6581,7 +6581,7 @@ func (s *Screenboard) HasWidth() bool {
65816581}
65826582
65836583// SetWidth allocates a new s.Width and returns the pointer to it.
6584- func (s * Screenboard ) SetWidth (v int ) {
6584+ func (s * Screenboard ) SetWidth (v json. Number ) {
65856585 s .Width = & v
65866586}
65876587
0 commit comments