platehub/plate_api

View on GitHub
lib/plate_api/plate_object/column.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PlateApi::PlateObject
  class Column < Base

    has_one :row, "PlateApi::PlateObject::Row"
    has_many :elements, :element, "PlateApi::PlateObject::Element", true

    def self.api_name
      "columns"
    end

    def self.parent_class
      Row
    end
  end
end