All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.affinda.api.client.models.ExtractorCreate Maven / Gradle / Ivy

Go to download

This package contains Java Client Library for the Affinda Resume Parser API. For documentation on how to use this package, please see https://github.com/affinda/affinda-java

There is a newer version: 3.16.0
Show newest version
package com.affinda.api.client.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** The ExtractorCreate model. */
@Fluent
public final class ExtractorCreate {
    /*
     * The name property.
     */
    @JsonProperty(value = "name", required = true)
    private String name;

    /*
     * The namePlural property.
     */
    @JsonProperty(value = "namePlural")
    private String namePlural;

    /*
     * Uniquely identify an extractor.
     */
    @JsonProperty(value = "baseExtractor")
    private String baseExtractor;

    /*
     * Uniquely identify an organization.
     */
    @JsonProperty(value = "organization", required = true)
    private String organization;

    /*
     * The category property.
     */
    @JsonProperty(value = "category")
    private String category;

    /*
     * The validatable property.
     */
    @JsonProperty(value = "validatable")
    private Boolean validatable;

    /*
     * The fieldGroups property.
     */
    @JsonProperty(value = "fieldGroups")
    private List fieldGroups;

    /**
     * Get the name property: The name property.
     *
     * @return the name value.
     */
    public String getName() {
        return this.name;
    }

    /**
     * Set the name property: The name property.
     *
     * @param name the name value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setName(String name) {
        this.name = name;
        return this;
    }

    /**
     * Get the namePlural property: The namePlural property.
     *
     * @return the namePlural value.
     */
    public String getNamePlural() {
        return this.namePlural;
    }

    /**
     * Set the namePlural property: The namePlural property.
     *
     * @param namePlural the namePlural value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setNamePlural(String namePlural) {
        this.namePlural = namePlural;
        return this;
    }

    /**
     * Get the baseExtractor property: Uniquely identify an extractor.
     *
     * @return the baseExtractor value.
     */
    public String getBaseExtractor() {
        return this.baseExtractor;
    }

    /**
     * Set the baseExtractor property: Uniquely identify an extractor.
     *
     * @param baseExtractor the baseExtractor value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setBaseExtractor(String baseExtractor) {
        this.baseExtractor = baseExtractor;
        return this;
    }

    /**
     * Get the organization property: Uniquely identify an organization.
     *
     * @return the organization value.
     */
    public String getOrganization() {
        return this.organization;
    }

    /**
     * Set the organization property: Uniquely identify an organization.
     *
     * @param organization the organization value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setOrganization(String organization) {
        this.organization = organization;
        return this;
    }

    /**
     * Get the category property: The category property.
     *
     * @return the category value.
     */
    public String getCategory() {
        return this.category;
    }

    /**
     * Set the category property: The category property.
     *
     * @param category the category value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setCategory(String category) {
        this.category = category;
        return this;
    }

    /**
     * Get the validatable property: The validatable property.
     *
     * @return the validatable value.
     */
    public Boolean isValidatable() {
        return this.validatable;
    }

    /**
     * Set the validatable property: The validatable property.
     *
     * @param validatable the validatable value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setValidatable(Boolean validatable) {
        this.validatable = validatable;
        return this;
    }

    /**
     * Get the fieldGroups property: The fieldGroups property.
     *
     * @return the fieldGroups value.
     */
    public List getFieldGroups() {
        return this.fieldGroups;
    }

    /**
     * Set the fieldGroups property: The fieldGroups property.
     *
     * @param fieldGroups the fieldGroups value to set.
     * @return the ExtractorCreate object itself.
     */
    public ExtractorCreate setFieldGroups(List fieldGroups) {
        this.fieldGroups = fieldGroups;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy