Package version:

Interface FileShareItems

Response schema. Contains list of shares returned, and if paging is requested or required, a URL to next page of shares.

interface FileShareItems {
    nextLink?: string;
    value?: FileShareItem[];
}

Properties

Properties

nextLink?: string

Request URL that can be used to query next page of shares. Returned when total number of requested shares exceed maximum page size. NOTE: This property will not be serialized. It can only be populated by the server.

value?: FileShareItem[]

List of file shares returned. NOTE: This property will not be serialized. It can only be populated by the server.