PerformerUpdateDifferenceData
public struct PerformerUpdateDifferenceData : Content
Used to return the results of comparing a bulk-scraped set of performers against the performers already in the database. The diff groups performers into categories based on whether they need to be created, updated, or are unchanged.
Returned by: GET /api/v3/admin/performer/bulk/verify
-
Performers scraped from web that don’t exist in the database. Will be created on apply.
Declaration
Swift
var newPerformers: [PerformerData] -
Performers that exist in both source and DB but have profile changes. Updated on apply unless “ignore updates” is checked.
Declaration
Swift
var updatedPerformers: [PerformerData] -
Count of performers that matched and had no changes.
Declaration
Swift
var unchangedCount: Int -
Performers in DB but not found in the scraped source. Only deleted on apply if “process deletes” is checked.
Declaration
Swift
var notInSourcePerformers: [PerformerHeaderData]
View on GitHub