CoreApiProxyListExistingServicesWithDepth Method |
Lists existing child services for given parent service, paginated.
Namespace:
Atomia.Billing.Core.Sdk.ServiceProxies
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public ProvisioningService[] ListExistingServicesWithDepth(
out int totalItems,
ProvisioningService parentService,
bool getLogicalChildren,
string accountId,
bool sortAsc,
int pageNumber,
int pageSize,
int numberOfParents
)
Public Function ListExistingServicesWithDepth (
<OutAttribute> ByRef totalItems As Integer,
parentService As ProvisioningService,
getLogicalChildren As Boolean,
accountId As String,
sortAsc As Boolean,
pageNumber As Integer,
pageSize As Integer,
numberOfParents As Integer
) As ProvisioningService()
public:
virtual array<ProvisioningService^>^ ListExistingServicesWithDepth(
[OutAttribute] int% totalItems,
ProvisioningService^ parentService,
bool getLogicalChildren,
String^ accountId,
bool sortAsc,
int pageNumber,
int pageSize,
int numberOfParents
) sealed
abstract ListExistingServicesWithDepth :
totalItems : int byref *
parentService : ProvisioningService *
getLogicalChildren : bool *
accountId : string *
sortAsc : bool *
pageNumber : int *
pageSize : int *
numberOfParents : int -> ProvisioningService[]
override ListExistingServicesWithDepth :
totalItems : int byref *
parentService : ProvisioningService *
getLogicalChildren : bool *
accountId : string *
sortAsc : bool *
pageNumber : int *
pageSize : int *
numberOfParents : int -> ProvisioningService[]
Parameters
- totalItems
- Type: SystemInt32
Total number of existing child services. - parentService
- Type: Atomia.Billing.Core.Sdk.AtomiaProvisioningApiProvisioningService
Parent service. If this parameter is null, root services will be returned. - getLogicalChildren
- Type: SystemBoolean
Determinate whether logical or physical children service representation should be returned. - accountId
- Type: SystemString
Account name for whom to search for. - sortAsc
- Type: SystemBoolean
If set to true services will be return ordered ascending by name. If not, order will be descending - pageNumber
- Type: SystemInt32
The page number. - pageSize
- Type: SystemInt32
Number of returned services by page. - numberOfParents
- Type: SystemInt32
Number of parents to fetch
Return Value
Type:
ProvisioningServiceList of child services or null if no child services.
Implements
ICoreApiListExistingServicesWithDepth(Int32, ProvisioningService, Boolean, String, Boolean, Int32, Int32, Int32)See Also