Class: GetScimV2UsersUserIDResponse404
- Inherits:
- 
      Dry::Struct
      
        - Object
- Dry::Struct
- GetScimV2UsersUserIDResponse404
 
- Defined in:
- lib/schemas.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.from_dynamic!(d) ⇒ Object
| 15943 15944 15945 15946 15947 15948 15949 15950 | # File 'lib/schemas.rb', line 15943 def self.from_dynamic!(d) d = Types::Hash[d] new( detail: d["detail"], schemas: d["schemas"], status: d["status"], ) end | 
.from_json!(json) ⇒ Object
| 15952 15953 15954 | # File 'lib/schemas.rb', line 15952 def self.from_json!(json) from_dynamic!(JSON.parse(json)) end | 
Instance Method Details
#to_dynamic ⇒ Object
| 15956 15957 15958 15959 15960 15961 15962 | # File 'lib/schemas.rb', line 15956 def to_dynamic { "detail" => detail, "schemas" => schemas, "status" => status, } end | 
#to_json(options = nil) ⇒ Object
| 15964 15965 15966 | # File 'lib/schemas.rb', line 15964 def to_json( = nil) JSON.generate(to_dynamic, ) end |