export interface SObjectBasicInformation { objectDescribe: SObjectBasicInformationDescribe; recentItems: SObjectBasicInformationRecentItem[]; } export interface SObjectBasicInformationDescribe { activateable: boolean; associateEntityType: string | null; associateParentEntity: string | null; createable: boolean; custom: boolean; customSetting: boolean; deepCloneable: boolean; deletable: boolean; deprecatedAndHidden: boolean; feedEnabled: boolean; hasSubtypes: boolean; isInterface: boolean; isSubtype: boolean; keyPrefix: string; label: string; labelPlural: string; layoutable: boolean; mergeable: boolean; mruEnabled: boolean; name: string; queryable: boolean; replicateable: boolean; retrieveable: boolean; searchable: boolean; triggerable: boolean; undeletable: boolean; updateable: boolean; urls: { compactLayouts: string; rowTemplate: string; approvalLayouts: string; listviews: string; describe: string; quickActions: string; layouts: string; sobject: string; }; } export interface SObjectBasicInformationRecentItem { attributes: { type: string; url: string; }; Id: string; Name: string; } //# sourceMappingURL=sObject.d.ts.map