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

com.affinda.api.client.models.ResumeSearch 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 ResumeSearch model. */
@Fluent
public final class ResumeSearch {
    /*
     * Total number of results
     */
    @JsonProperty(value = "count")
    private Integer count;

    /*
     * URL to request next page of results
     */
    @JsonProperty(value = "next")
    private String next;

    /*
     * URL to request previous page of results
     */
    @JsonProperty(value = "previous")
    private String previous;

    /*
     * The parameters property.
     */
    @JsonProperty(value = "parameters")
    private ResumeSearchParameters parameters;

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

    /**
     * Get the count property: Total number of results.
     *
     * @return the count value.
     */
    public Integer getCount() {
        return this.count;
    }

    /**
     * Set the count property: Total number of results.
     *
     * @param count the count value to set.
     * @return the ResumeSearch object itself.
     */
    public ResumeSearch setCount(Integer count) {
        this.count = count;
        return this;
    }

    /**
     * Get the next property: URL to request next page of results.
     *
     * @return the next value.
     */
    public String getNext() {
        return this.next;
    }

    /**
     * Set the next property: URL to request next page of results.
     *
     * @param next the next value to set.
     * @return the ResumeSearch object itself.
     */
    public ResumeSearch setNext(String next) {
        this.next = next;
        return this;
    }

    /**
     * Get the previous property: URL to request previous page of results.
     *
     * @return the previous value.
     */
    public String getPrevious() {
        return this.previous;
    }

    /**
     * Set the previous property: URL to request previous page of results.
     *
     * @param previous the previous value to set.
     * @return the ResumeSearch object itself.
     */
    public ResumeSearch setPrevious(String previous) {
        this.previous = previous;
        return this;
    }

    /**
     * Get the parameters property: The parameters property.
     *
     * @return the parameters value.
     */
    public ResumeSearchParameters getParameters() {
        return this.parameters;
    }

    /**
     * Set the parameters property: The parameters property.
     *
     * @param parameters the parameters value to set.
     * @return the ResumeSearch object itself.
     */
    public ResumeSearch setParameters(ResumeSearchParameters parameters) {
        this.parameters = parameters;
        return this;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy