Compute conflict indexed output for gurobi

Hi All,
i am using compute conflict with gurobi
the sample code and output is given as

 @constraint(model,conexisting20[p in 1:P, b in 1:B],sum(ME_B_O_20[b,c,p]*C_s20[c] for  c in 1:C)==Moves20[p,b] )
println("======================conexisting20") #conexisting20
println(MOI.get.(model, MOI.ConstraintConflictStatus(), conexisting20)) 
the output is

======================conexisting20
MathOptInterface.ConflictParticipationStatusCode[MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
 MathOptInterface.NOT_IN_CONFLICT
is there a way to get the proper p and b index for above output.
Thanks,

Please provide a reproducible example.

If you run

conflict = MOI.get.(model, MOI.ConstraintConflictStatus(), conexisting20)

conflict should have the same type and shape as conexisting20. So you can access it as conflict[p, b].