The result of listing policies.

interface ListPoliciesResult {
    nextPageToken?: string;
    policies: Policy[];
}

Properties

nextPageToken?: string

The next page token to paginate through the policies. If undefined, there are no more policies to paginate through.

policies: Policy[]

The list of policies matching the query parameters.