NFTCollection

interface NFTCollection {
	floor: NFTFloor[];
	blockchain: Blockchain;
	/** @maxLength 100 */
	address: string;
	/** @maxLength 100 */
	name?: string | null;
	/** @maxLength 100 */
	symbol?: string | null;
	description?: string | null;
	image_url?: string | null;
	/** @maxLength 100 */
	opensea_status?: string | null;
	is_spam?: boolean;
}