Class: ResponseForSecretsResponse

Inherits:
Dry::Struct
  • Object
show all
Defined in:
lib/schemas.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.from_dynamic!(d) ⇒ Object



1982
1983
1984
1985
1986
1987
1988
1989
# File 'lib/schemas.rb', line 1982

def self.from_dynamic!(d)
  d = Types::Hash[d]
  new(
    data:          d["data"] ? SecretsResponse.from_dynamic!(d["data"]) : nil,
    error_message: d["errorMessage"],
    success:       d.fetch("success"),
  )
end

.from_json!(json) ⇒ Object



1991
1992
1993
# File 'lib/schemas.rb', line 1991

def self.from_json!(json)
  from_dynamic!(JSON.parse(json))
end

Instance Method Details

#to_dynamicObject



1995
1996
1997
1998
1999
2000
2001
# File 'lib/schemas.rb', line 1995

def to_dynamic
  {
    "data"         => data&.to_dynamic,
    "errorMessage" => error_message,
    "success"      => success,
  }
end

#to_json(options = nil) ⇒ Object



2003
2004
2005
# File 'lib/schemas.rb', line 2003

def to_json(options = nil)
  JSON.generate(to_dynamic, options)
end