Example #1
0
 public CodeReviewParticipant(TDMemberProfile user, CodeReviewParticipantRole role, ReviewerState?state = null, bool?theirTurn = null, List <CodeReviewParticipantQualityGateSlot>?qualityGateSlots = null, DateTime?addedAt = null)
 {
     User             = user;
     Role             = role;
     State            = state;
     IsTheirTurn      = theirTurn;
     QualityGateSlots = qualityGateSlots;
     AddedAt          = addedAt;
 }
 public CodeReviewParticipantRecord(string id, string projectId, CodeReviewParticipantRole role, TDMemberProfile profile, bool archived, ReviewerState?reviewerState = null, bool?theirTurn = null)
 {
     Id            = id;
     ProjectId     = projectId;
     Role          = role;
     Profile       = profile;
     ReviewerState = reviewerState;
     IsTheirTurn   = theirTurn;
     IsArchived    = archived;
 }
Example #3
0
 public ProjectsForProjectCodeReviewsForReviewIdParticipantsForUserPostRequest(CodeReviewParticipantRole role)
 {
     Role = role;
 }