class Ittybit::TaskListResponse
def self.validate_raw(obj:)
-
(Void)
-
Parameters:
-
obj
(Object
) --
def self.validate_raw(obj:) obj.meta.nil? || Ittybit::MetaList.validate_raw(obj: obj.meta) obj.data&.is_a?(Array) != false || raise("Passed value for field obj.data is not the expected type, validation failed.") obj.error.nil? || Ittybit::Error.validate_raw(obj: obj.error) obj.links.nil? || Ittybit::LinksList.validate_raw(obj: obj.links) end