Class: ConvenientService::Examples::Standard::RequestParams::Entities::Description

Inherits:
Object
  • Object
show all
Defined in:
lib/convenient_service/examples/standard/request_params/entities/description.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value:) ⇒ Description

Returns a new instance of Description.



9
10
11
# File 'lib/convenient_service/examples/standard/request_params/entities/description.rb', line 9

def initialize(value:)
  @value = value
end

Class Method Details

.cast(value) ⇒ Object



14
15
16
17
18
19
# File 'lib/convenient_service/examples/standard/request_params/entities/description.rb', line 14

def cast(value)
  case value
  when ::String
    new(value: value.to_s)
  end
end

Instance Method Details

#==(other) ⇒ Object



22
23
24
25
26
# File 'lib/convenient_service/examples/standard/request_params/entities/description.rb', line 22

def ==(other)
  return unless other.instance_of?(self.class)

  value == other.value
end

#to_sObject



28
29
30
# File 'lib/convenient_service/examples/standard/request_params/entities/description.rb', line 28

def to_s
  value
end