Interface AddReviewPayload

interface AddReviewPayload {
    collectionId?: NumberType;
    cosmosAddress?: string;
    review: string;
    stars: NumberType;
}

Properties

collectionId?: NumberType

The collection ID that you are reviewing. One of cosmosAddress or collectionId must be provided.

cosmosAddress?: string

The address you are reviewing. One of cosmosAddress or collectionId must be provided.

review: string

The review text (1 to 2048 characters).

stars: NumberType

The star rating (1 to 5).