pub struct BeaconReportSyndication {
pub analysis: BeaconReportSyndicationAnalysis,
pub id: String,
pub report: BeaconReportSyndicationOriginalReport,
}Expand description
A Beacon Report Syndication represents a Beacon Report created either by your organization or another Beacon customer that matches a specific Beacon User you’ve created.
The analysis field in the response indicates which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to.
The report field in the response contains a subset of information from the original report.
Fields§
§analysis: BeaconReportSyndicationAnalysisAnalysis of which fields matched between the originally reported Beacon User and the Beacon User that the report was syndicated to.
id: StringID of the associated Beacon Report Syndication.
report: BeaconReportSyndicationOriginalReportA subset of information from a Beacon Report that has been syndicated to a matching Beacon User in your program.
The id field in the response is the ID of the original report that was syndicated. If the original report was created by your organization, the field will be filled with the ID of the report. Otherwise, the field will be null indicating that the original report was created by another Beacon customer.
Trait Implementations§
Source§impl Clone for BeaconReportSyndication
impl Clone for BeaconReportSyndication
Source§fn clone(&self) -> BeaconReportSyndication
fn clone(&self) -> BeaconReportSyndication
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more