
com.affinda.api.client.models.ResumeSearchEmbed Maven / Gradle / Ivy
package com.affinda.api.client.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The ResumeSearchEmbed model. */
@Fluent
public final class ResumeSearchEmbed {
/*
* The signed URL for the embedable search tool.
*/
@JsonProperty(value = "url")
private String url;
/**
* Get the url property: The signed URL for the embedable search tool.
*
* @return the url value.
*/
public String getUrl() {
return this.url;
}
/**
* Set the url property: The signed URL for the embedable search tool.
*
* @param url the url value to set.
* @return the ResumeSearchEmbed object itself.
*/
public ResumeSearchEmbed setUrl(String url) {
this.url = url;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy