Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/ParticipantSetInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **String** | The unique identifier of the participant. This will be ignored as part of POST or PUT calls. The Id might be null in draft state. | [optional]
**label** | **String** | The unique label of a participant set.<br>For custom workflows, label specified in the participation set should map it to the participation step in the custom workflow. | [optional]
**memberInfos** | [**List<ParticipantSetMemberInfo>**](ParticipantSetMemberInfo.md) | Array of ParticipantInfo objects, containing participant-specific data (e.g. email). All participants in the array belong to the same set | [optional]
**name** | **String** | Name of the participant set (it can be empty, but needs not to be unique in a single agreement). Maximum no of characters in participant set name is restricted to 255 | [optional]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-11T15:48:52.659+05:30")
public class ParticipantSetInfo {
@SerializedName("id")
private String id = null;

@SerializedName("label")
private String label = null;

Expand Down Expand Up @@ -132,6 +135,23 @@ public RoleEnum read(final JsonReader jsonReader) throws IOException {
@SerializedName("visiblePages")
private List<String> visiblePages = null;

public ParticipantSetInfo id(String id) {
this.id = id;
return this;
}

/**
* The unique identifier of the participant. This will be ignored as part of POST or PUT calls. The Id might be null in draft state.
**/
@ApiModelProperty(value = "The unique identifier of the participant. This will be ignored as part of POST or PUT calls. The Id might be null in draft state.")
public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public ParticipantSetInfo label(String label) {
this.label = label;
return this;
Expand Down Expand Up @@ -284,7 +304,8 @@ public boolean equals(java.lang.Object o) {
return false;
}
ParticipantSetInfo participantSetInfo = (ParticipantSetInfo) o;
return Objects.equals(this.label, participantSetInfo.label) &&
return Objects.equals(this.id, participantSetInfo.id) &&
Objects.equals(this.label, participantSetInfo.label) &&
Objects.equals(this.memberInfos, participantSetInfo.memberInfos) &&
Objects.equals(this.name, participantSetInfo.name) &&
Objects.equals(this.order, participantSetInfo.order) &&
Expand All @@ -295,7 +316,7 @@ public boolean equals(java.lang.Object o) {

@Override
public int hashCode() {
return Objects.hash(label, memberInfos, name, order, privateMessage, role, visiblePages);
return Objects.hash(id, label, memberInfos, name, order, privateMessage, role, visiblePages);
}


Expand All @@ -304,6 +325,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ParticipantSetInfo {\n");

sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" label: ").append(toIndentedString(label)).append("\n");
sb.append(" memberInfos: ").append(toIndentedString(memberInfos)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
Expand Down