Asset

 interface Asset {
	/** @maxLength 100 */
	id?: string;
	metadata: AssetMetadata[];
	/** @maxLength 100 */
	name: string;
	/** @maxLength 100 */
	symbol: string | null;
	/** @maxLength 100 */
	slug: string;
	/** @maxLength 100 */
	type: string;
	description?: string | null;
	image_url?: string | null;
}