Method: KlaviyoAPI::StaticDateRangeFilter#list_invalid_properties
- Defined in:
- lib/klaviyo-api-sdk/models/static_date_range_filter.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/klaviyo-api-sdk/models/static_date_range_filter.rb', line 113 def list_invalid_properties invalid_properties = Array.new if @type.nil? invalid_properties.push('invalid value for "type", type cannot be nil.') end if @operator.nil? invalid_properties.push('invalid value for "operator", operator cannot be nil.') end if @start.nil? invalid_properties.push('invalid value for "start", start cannot be nil.') end if @_end.nil? invalid_properties.push('invalid value for "_end", _end cannot be nil.') end invalid_properties end |