
com.affinda.api.client.models.MappingDataSourceCreate 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;
/** A mapping data source is used to map from raw data found by our AI models to records in your database. */
@Fluent
public final class MappingDataSourceCreate {
/*
* The name property.
*/
@JsonProperty(value = "name")
private String name;
/*
* The organization that this mapping data source belongs to.
*/
@JsonProperty(value = "organization", required = true)
private String organization;
/*
* Attribute in the schema which uniquely identifiers the value
*/
@JsonProperty(value = "keyProperty")
private String keyProperty;
/*
* Attribute in the schema which is used to display the value
*/
@JsonProperty(value = "displayProperty")
private String displayProperty;
/*
* The values property.
*/
@JsonProperty(value = "values")
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy