Sha256: 1433547446d008e20d86c718181998c8ce9572015bf79f478a34afbdfb63fea3

Contents?: true

Size: 784 Bytes

Versions: 6

Compression:

Stored size: 784 Bytes

Contents

# frozen_string_literal: true

require_relative "../../../../response/product_groups_response"

module ONEAccess
  module API
    module V1_1
      module Entitlement
        module Organization
          class ProductGroup < Base
            api_path "/entitlement/organization/productgroup"

            def self.get_list(contributor_org_id:, page_number: 0, page_size: 20, type: nil)
              resp = send_get("getList", Query: {
                PageNumber:       page_number,
                PageSize:         page_size,
                ContributorOrgId: contributor_org_id,
                Type:             type
              }.to_json)
              Response::ProductGroupsResponse.from_json(resp.body)
            end
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
oneaccess-1.2.0 lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb
oneaccess-1.1.0 lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb
oneaccess-1.0.1 lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb
oneaccess-1.0.0 lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb
oneaccess-0.5.0 lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb
oneaccess-0.4.5 lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb