com.atlan.model.fields.AtlanField Maven / Gradle / Ivy
// Generated by delombok at Thu Oct 10 18:56:33 UTC 2024
/* SPDX-License-Identifier: Apache-2.0
Copyright 2023 Atlan Pte. Ltd. */
package com.atlan.model.fields;
/**
* Base enumeration of all attributes that exist in Atlan, so you do not have to remember their
* exact spelling or capitalization.
*/
public abstract class AtlanField {
private final String atlanFieldName;
public AtlanField(String atlan) {
this.atlanFieldName = atlan;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getAtlanFieldName() {
return this.atlanFieldName;
}
}