/** * Ingestion metadata */ export interface IngestionMetadata { /** The source name of ingestion metadata e.g. "ampli" */ sourceName?: string; /** The source version of ingestion metadata e.g. "2.0.0" */ sourceVersion?: string; } /** * Ingestion metadata event property, snake-case */ export interface IngestionMetadataEventProperty { /** The source name of ingestion metadata e.g. "ampli" */ source_name?: string; /** The source version of ingestion metadata e.g. "2.0.0" */ source_version?: string; } //# sourceMappingURL=ingestion-metadata.d.ts.map