class OpenApiSDK::Models::Webhooks::EndpointcustomerDeletedPostResponse
def ==(other)
def ==(other) return false unless other.is_a?(self.class) return false unless @content_type == other.content_type return false unless @status_code == other.status_code return false unless @raw_response == other.raw_response return false unless @any == other.any true end
def initialize(content_type:, status_code:, raw_response:, any: nil)
def initialize(content_type:, status_code:, raw_response:, any: nil) @content_type = content_type @status_code = status_code @raw_response = raw_response @any = any end