Skip to content

Commit

Permalink
added record_id and pool_id for dial method
Browse files Browse the repository at this point in the history
  • Loading branch information
namtzigla committed Feb 13, 2025
1 parent 26cf800 commit e549b46
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core/src/main/java/com/tcn/exile/models/DialRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@
import io.micronaut.serde.annotation.Serdeable;
import jakarta.annotation.Nullable;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.Null;

@Serdeable
public record DialRequest(@NotEmpty String phoneNumber, @Nullable String callerId) {
public record DialRequest(
@NotEmpty String phoneNumber,
@Nullable String callerId,
@Nullable String recordId,
@Nullable String poolId) {
}

0 comments on commit e549b46

Please sign in to comment.