Sha256: c267aa188700f890cf6fab0acaaf4df0a3a5b368afdc6b8ad05049ba81fbcb1e
Contents?: true
Size: 827 Bytes
Versions: 2
Compression:
Stored size: 827 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oneaccess-1.3.1 | lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb |
oneaccess-1.3.0 | lib/oneaccess/api/v1_1/entitlement/organization/product_group.rb |