io.github.eduardromanyuk.turbosms.model.request.builder.TsMessageSendRequestImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of turbosms-spring-boot-starter Show documentation
Show all versions of turbosms-spring-boot-starter Show documentation
This starter provides infrastructure for using TurboSMS sms/viber provider.
HTTP API was used for communication.
The newest version!
package io.github.eduardromanyuk.turbosms.model.request.builder;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import java.time.LocalDateTime;
import java.util.List;
@Getter
@ToString
@Setter(AccessLevel.PACKAGE)
class TsMessageSendRequestImpl {
private List recipients;
private String sender;
private String text;
private LocalDateTime startTime;
}