The metadata is stored in Salesforce. Updating the Apex code to return new or updated values for the table metadata doesn’t automatically update the stored metadata in Salesforce.
The following are properties for Table.
public List<DataSource.Column> columns {get; set;}
Type: List<DataSource.Column>
public String labelSingular {get; set;}
Type: String
public String nameColumn {get; set;}
Type: String
The following are methods for Table.
public static DataSource.Table get(String name, String labelSingular, String labelPlural, String description, String nameColumn, List<DataSource.Column> columns)
Type: DataSource.Table
public static DataSource.Table get(String name, String nameColumn, List<DataSource.Column> columns)
Type: DataSource.Table
Property | Value |
---|---|
name | name |
labelSingular | name |
labelPlural | name |
description | name |
nameColumn | nameColumn |
columns | columns |