it.auties.whatsapp.model.action.TimeFormatAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
package it.auties.whatsapp.model.action;
import it.auties.protobuf.base.ProtobufName;
import it.auties.protobuf.base.ProtobufProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;
import static it.auties.protobuf.base.ProtobufType.BOOL;
/**
* A model clas that represents the time format used by the companion
*/
@AllArgsConstructor
@Data
@Accessors(fluent = true)
@Jacksonized
@Builder
@ProtobufName("TimeFormatAction")
public final class TimeFormatAction implements Action {
@ProtobufProperty(index = 1, name = "isTwentyFourHourFormatEnabled", type = BOOL)
private boolean twentyFourHourFormatEnabled;
/**
* The name of this action
*
* @return a non-null string
*/
@Override
public String indexName() {
return "time_format";
}
}