/** @description Key value pair to allow for custom attributes required for tracking */
export class TrackingIdentifier {
  type!: string;
  value!: string;
}
