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

com.affinda.api.client.models.EducationDates 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.time.LocalDate;

/** The EducationDates model. */
@Fluent
public final class EducationDates {
    /*
     * The completionDate property.
     */
    @JsonProperty(value = "completionDate")
    private LocalDate completionDate;

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

    /*
     * The startDate property.
     */
    @JsonProperty(value = "startDate")
    private LocalDate startDate;

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

    /**
     * Get the completionDate property: The completionDate property.
     *
     * @return the completionDate value.
     */
    public LocalDate getCompletionDate() {
        return this.completionDate;
    }

    /**
     * Set the completionDate property: The completionDate property.
     *
     * @param completionDate the completionDate value to set.
     * @return the EducationDates object itself.
     */
    public EducationDates setCompletionDate(LocalDate completionDate) {
        this.completionDate = completionDate;
        return this;
    }

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

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

    /**
     * Get the startDate property: The startDate property.
     *
     * @return the startDate value.
     */
    public LocalDate getStartDate() {
        return this.startDate;
    }

    /**
     * Set the startDate property: The startDate property.
     *
     * @param startDate the startDate value to set.
     * @return the EducationDates object itself.
     */
    public EducationDates setStartDate(LocalDate startDate) {
        this.startDate = startDate;
        return this;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy