/**1* IBM Cloud Common schema for Segment events.2* Only the properties used in this project are included in this interface.3* https://segment-standards.prod.ddp.cis.ibm.net/events/performed-search#IBM%20Cloud%20Common4*/5interface IbmCloudCommonEventSegmentSchema {6category: string7productTitle: string8uiElement?: string9}1011/**12* Properties sent to Segment for the event "CTA Clicked".13* Only the properties used in this project are included in this interface.14* https://segment-standards.prod.ddp.cis.ibm.net/events/cta-clicked15*/16export interface CtaClickedEventSegmentSchema17extends IbmCloudCommonEventSegmentSchema {18CTA: string19location: string20}2122/**23* Vue prop with data for the Segment event "CTA Clicked".24* Based on the interface CtaClickedEventSegmentSchema.25*/26export interface CtaClickedEventProp {27cta: string28location: string29}3031/**32* Properties sent to Segment for the event "Performed Search".33* Only the properties used in this project are included in this interface.34* https://segment-standards.prod.ddp.cis.ibm.net/events/performed-search35*/36export interface PerformedSearchEventSegmentSchema37extends IbmCloudCommonEventSegmentSchema {38field: string39}4041/**42* Properties sent to Segment for the event "Updated Object".43* Only the properties used in this project are included in this interface.44* https://segment-standards.prod.ddp.cis.ibm.net/events/updated-object45*/46export interface UpdatedObjectEventSegmentSchema47extends IbmCloudCommonEventSegmentSchema {48object: string49objectType: string50}515253