IInvoiceLineItemCollection.Get Method

Definition

Overloads

Get()

Retrieves invoice line items for a specific billing provider and invoice line item type

Get(Int32, Int32)

Retrieves a subset of invoice line items for a specific billing provider and invoice line item type

Get()

Retrieves invoice line items for a specific billing provider and invoice line item type

public Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem> Get ();
abstract member Get : unit -> Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem>
Public Function Get () As ResourceCollection(Of InvoiceLineItem)

Returns

The collection of invoice line items.

Implements

Applies to

Get(Int32, Int32)

Retrieves a subset of invoice line items for a specific billing provider and invoice line item type

public Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem> Get (int size, int offset);
abstract member Get : int * int -> Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem>
Public Function Get (size As Integer, offset As Integer) As ResourceCollection(Of InvoiceLineItem)

Parameters

size
Int32

The maximum number of invoice line items to return.

offset
Int32

The page offset.

Returns

The subset of invoice line items.

Implements

Applies to