Class: Ronin::DB::HTTPQueryParamName
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Ronin::DB::HTTPQueryParamName
- Includes:
- Model, Model::HasUniqueName
- Defined in:
- lib/ronin/db/http_query_param_name.rb
Overview
Represents the name of a HTTPQueryParam.
Instance Attribute Summary collapse
-
#created_at ⇒ Time
When the HTTP query param name was first created.
-
#id ⇒ Integer
The primary-key of the HTTP query param.
-
#name ⇒ String
The name of the HTTP query param.
-
#query_params ⇒ Array<URLQueryParam>
The HTTP query params.
Instance Method Summary collapse
-
#to_s ⇒ String
Converts the HTTP query param name to a String.
Methods included from Model::HasUniqueName
Methods included from Model
Instance Attribute Details
#created_at ⇒ Time
When the HTTP query param name was first created.
60 |
# File 'lib/ronin/db/http_query_param_name.rb', line 60 attribute :created_at, :datetime |
#id ⇒ Integer
The primary-key of the HTTP query param
40 |
# File 'lib/ronin/db/http_query_param_name.rb', line 40 attribute :id, :integer |
#name ⇒ String
The name of the HTTP query param.
46 |
# File 'lib/ronin/db/http_query_param_name.rb', line 46 attribute :name, :string |
#query_params ⇒ Array<URLQueryParam>
The HTTP query params.
53 54 |
# File 'lib/ronin/db/http_query_param_name.rb', line 53 has_many :query_params, class_name: 'HTTPQueryParam', foreign_key: :name_id |
Instance Method Details
#to_s ⇒ String
Converts the HTTP query param name to a String.
70 71 72 |
# File 'lib/ronin/db/http_query_param_name.rb', line 70 def to_s self.name.to_s end |