rest-api/src/jetbrains/buildServer/server/graphql/model/mutation/UnassignProjectFromAgentPoolInput.java [27:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setProjectRawId(@NotNull String projectRawId) {
    myProjectRawId = projectRawId;
  }

  public void setAgentPoolRawId(int agentPoolRawId) {
    myAgentPoolRawId = agentPoolRawId;
  }

  @NotNull
  public String getProjectRawId() {
    return myProjectRawId;
  }

  public int getAgentPoolRawId() {
    return myAgentPoolRawId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rest-api/src/jetbrains/buildServer/server/graphql/model/mutation/agentPool/AssignProjectWithAgentPoolInput.java [29:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setProjectRawId(@NotNull String projectRawId) {
    myProjectRawId = projectRawId;
  }

  public void setAgentPoolRawId(int agentPoolRawId) {
    myAgentPoolRawId = agentPoolRawId;
  }

  @NotNull
  public String getProjectRawId() {
    return myProjectRawId;
  }

  public int getAgentPoolRawId() {
    return myAgentPoolRawId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



