Skip to content

Commit

Permalink
Add ticket signature to builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Miha Zidar authored and zb-sr committed Mar 1, 2024
1 parent 6581718 commit 1215ab7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ public AltStakeTicketRef build() {
return this.instance;
}

/**
* Sets the ticket signature.
*
* @param value The ticket signature to set.
* @return The builder instance.
*/
public Builder setTicketSignature(String value) {
this.instance.setTicketSignature(value);
return this;
}

/**
* Sets the ticket ID.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ public ReofferTicketRef build() {
return this.instance;
}

/**
* Sets the ticket signature.
*
* @param value The ticket signature to set.
* @return The builder instance.
*/
public Builder setTicketSignature(String value) {
this.instance.setTicketSignature(value);
return this;
}

/**
* Sets the ticket ID.
*
Expand Down

0 comments on commit 1215ab7

Please sign in to comment.