ProtocolGeneric

interface ProtocolGeneric {
	/** @maxLength 100 */
	id?: string;
	/** @maxLength 100 */
	name: string;
	/** @maxLength 100 */
	slug: string;
	image_url?: string | null;
}