it.auties.whatsapp.model.business.BusinessHours 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
The newest version!
package it.auties.whatsapp.model.business;
import lombok.NonNull;
import java.util.List;
/**
* A business hours representation that contains the business' time zone and a list of business hour
* entries.
*
* @param timeZone The time zone of the business.
* @param entries A list of business hours entries that contains information about the hours of
* operation for each day of the week.
*/
public record BusinessHours(@NonNull String timeZone, @NonNull List entries) {
}