class OpenApiSDK::Models::Components::ListResourceEvent
def ==(other)
def ==(other) return false unless other.is_a?(self.class) return false unless @items == other.items return false unless @pagination == other.pagination true end
def initialize(items:, pagination:)
def initialize(items:, pagination:) @items = items @pagination = pagination end