
com.affinda.api.client.models.ResumeSearchDetailJobTitle Maven / Gradle / Ivy
package com.affinda.api.client.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** The ResumeSearchDetailJobTitle model. */
@Fluent
public final class ResumeSearchDetailJobTitle {
/*
* The missing property.
*/
@JsonProperty(value = "missing")
private List missing;
/*
* The value property.
*/
@JsonProperty(value = "value")
private List value;
/**
* Get the missing property: The missing property.
*
* @return the missing value.
*/
public List getMissing() {
return this.missing;
}
/**
* Set the missing property: The missing property.
*
* @param missing the missing value to set.
* @return the ResumeSearchDetailJobTitle object itself.
*/
public ResumeSearchDetailJobTitle setMissing(List missing) {
this.missing = missing;
return this;
}
/**
* Get the value property: The value property.
*
* @return the value value.
*/
public List getValue() {
return this.value;
}
/**
* Set the value property: The value property.
*
* @param value the value value to set.
* @return the ResumeSearchDetailJobTitle object itself.
*/
public ResumeSearchDetailJobTitle setValue(List value) {
this.value = value;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy