class OpenApiSDK::Models::Components::CustomerBenefitGrantDownloadablesUpdate
def ==(other)
def ==(other) return false unless other.is_a?(self.class) return false unless @benefit_type == other.benefit_type true end
def initialize(benefit_type: "downloadables")
def initialize(benefit_type: "downloadables") unless benefit_type == "downloadables" raise ArgumentError, "Invalid value for benefit_type" end @benefit_type = "downloadables" end