dev.fuxing.airtable.formula.RecordFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of airtable-api Show documentation
Show all versions of airtable-api Show documentation
Java Airtable API for https://airtable.com/api
The newest version!
package dev.fuxing.airtable.formula;
/**
* @see Record functions
*
* Created by: Fuxing
* Date: 2019-04-21
* Time: 02:06
*/
public interface RecordFunction extends AirtableFunction {
/**
* Returns the creation time of the current record.
*/
RecordFunction CREATED_TIME = s -> "CREATED_TIME()";
/**
* Returns the ID of the current record.
*/
RecordFunction RECORD_ID = s -> "RECORD_ID()";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy