All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.whatsapp.model.business.BusinessHours Maven / Gradle / Ivy

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) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy