"""GrpsIngestionContext class for state machine.""" class GrpsIngestionContext: """Body class.""" def __init__(self, **kwargs): """Construct Body class.""" self.project = kwargs.get('project') self.product = kwargs.get('product') self.tracks = kwargs.get('tracks') self.label_participants = kwargs.get('label_participants') self.correlation_id = kwargs.get('correlation_id') self.grps_ingestion_id = kwargs.get('grps_ingestion_id') self.deleted_tracks = kwargs.get('deleted_tracks') self.product_type = kwargs.get('product_type') self.placeholder_upc_ingestion = kwargs.get( 'placeholder_upc_ingestion')