Class: Pago::V2026_04::Models::BenefitFeatureFlagCreateProperties
- Defined in:
- lib/pago/v2026_04/models.rb,
sig/pago/v2026_04/generated.rbs
Overview
Properties for creating a benefit of type feature_flag.
Constant Summary collapse
- JSON_KEYS =
{ }.freeze
- REQUIRED_KEYS =
[].freeze
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ BenefitFeatureFlagCreateProperties
constructor
A new instance of BenefitFeatureFlagCreateProperties.
Methods inherited from Model
#==, #[], #field_set?, #hash, #inspect, json_keys, required_json_keys, #to_json, #to_json_hash, wrap_raw
Constructor Details
#initialize ⇒ BenefitFeatureFlagCreateProperties
Returns a new instance of BenefitFeatureFlagCreateProperties.
3831 3832 3833 |
# File 'lib/pago/v2026_04/models.rb', line 3831 def initialize super end |
Class Method Details
.from_json(data) ⇒ BenefitFeatureFlagCreateProperties?
3837 3838 3839 3840 3841 3842 3843 |
# File 'lib/pago/v2026_04/models.rb', line 3837 def self.from_json(data) data = ::JSON.parse(data) if data.is_a?(String) data = ::Pago::Serde.object(data) return nil if data.nil? wrap_raw(new, data) end |