TaxonomyGenusInfo.java

/*
 * Copyright 2026 Global Crop Diversity Trust
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root folder or http://www.apache.org/licenses/LICENSE-2.0
 */

package org.gringlobal.api.model;

import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
public class TaxonomyGenusInfo {

	/** Taxonomy Genus ID. */
	private Long id;

	/** Hybrid Code: The hybrid code for this genus. Uses GENUS_HYBRID vocabulary. */
	private String hybridCode;

	/** Genus: The taxonomic genus name. */
	private String genusName;

	/** Genus Authority: The author for the genus name. */
	private String genusAuthority;

	/** Subgenus: The name for a subgenus division of the genus. */
	private String subgenusName;

	/** Section: The name for a section division of the genus. */
	private String sectionName;

	/** Subsection: The name for a subsection division of the genus. */
	private String subsectionName;

	/** Series: The name for a series division of the genus. */
	private String seriesName;

	/** Subseries: The name for a subseries division of the genus. */
	private String subseriesName;

	/** Synonym Qualifier: A code qualifying the genus name if the name is a synonym. Uses TAXONOMY_GENUS_QUALIFIER vocabulary. */
	private String qualifyingCode;

	/** Family: The taxonomic family name. */
	private String familyName;

	/** Subfamily: The name for a subfamily division of the family. */
	private String subfamilyName;

	/** Tribe: The name for a tribe division of the family. */
	private String tribeName;

	/** Subtribe: The name for a subtribe division of the family. */
	private String subtribeName;

	public TaxonomyGenusInfo(Long id) {
		this.id = id;
	}

}