class OpenApiSDK::Models::Components::BenefitLicenseKeysSubscriberProperties

def ==(other)

def ==(other)
  return false unless other.is_a?(self.class)
  return false unless @prefix == other.prefix
  return false unless @expires == other.expires
  return false unless @activations == other.activations
  return false unless @limit_usage == other.limit_usage
  true
end

def initialize(prefix: nil, expires: nil, activations: nil, limit_usage: nil)

def initialize(prefix: nil, expires: nil, activations: nil, limit_usage: nil)
  @prefix = prefix
  @expires = expires
  @activations = activations
  @limit_usage = limit_usage
end