@adcp/client API Reference - v3.11.2
    Preparing search index...

    Interface ListPropertyListsResponse

    A source of properties for a property list. Supports three selection patterns: publisher with tags, publisher with property IDs, or direct identifiers.

    interface ListPropertyListsResponse {
        lists: PropertyList[];
        total_count?: number;
        returned_count?: number;
        pagination?: { has_more?: boolean; cursor?: string };
        ext?: ExtensionObject;
    }
    Index

    Properties

    lists: PropertyList[]

    Array of property lists (metadata only, not resolved properties)

    total_count?: number

    Total number of lists matching criteria

    returned_count?: number

    Number of lists returned in this response

    pagination?: { has_more?: boolean; cursor?: string }

    Pagination information

    Type Declaration

    • Optionalhas_more?: boolean

      Whether more results are available

    • Optionalcursor?: string

      Cursor for next page

    ext?: ExtensionObject