All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.fuxing.airtable.formula.RecordFunction Maven / Gradle / Ivy

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