class Ittybit::FileResponse

def self.validate_raw(obj:)

Returns:
  • (Void) -

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