xrpl
    Preparing search index...

    Interface NFTBuyOffersResponse

    Response expected from an NFTBuyOffersRequest.

    interface NFTBuyOffersResponse {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: {
            limit?: number;
            marker?: unknown;
            nft_id: string;
            offers: NFTOffer[];
        };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: { limit?: number; marker?: unknown; nft_id: string; offers: NFTOffer[] }

    Type Declaration

    • Optionallimit?: number

      The limit value used in the request.

    • Optionalmarker?: unknown

      Server-defined value indicating the response is paginated. Pass this to the next call to resume where this call left off.

    • nft_id: string

      The token ID of the NFToken to which these offers pertain.

    • offers: NFTOffer[]

      A list of buy offers for the specified NFToken.

    status?: string
    type: string
    warning?: "load"
    warnings?: ResponseWarning[]