/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.location; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; import com.mozu.api.contracts.location.Hours; /** * Array list of standard operating hours for each day of the week this location is open for shopper business. */ @JsonIgnoreProperties(ignoreUnknown = true) public class RegularHours implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The Friday label array describes the range of hours this location is normally open on Fridays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours friday; public Hours getFriday() { return this.friday; } public void setFriday(Hours friday) { this.friday = friday; } /** * The Monday label array describes the range of hours this location is normally open on Mondays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours monday; public Hours getMonday() { return this.monday; } public void setMonday(Hours monday) { this.monday = monday; } /** * The Saturday label array describes the range of hours this location is normally open on Saturdays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours saturday; public Hours getSaturday() { return this.saturday; } public void setSaturday(Hours saturday) { this.saturday = saturday; } /** * The Sunday label array describes the range of hours this location is normally open on Sundays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours sunday; public Hours getSunday() { return this.sunday; } public void setSunday(Hours sunday) { this.sunday = sunday; } /** * The Thursday label array describes the range of hours this location is normally open on Thursdays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours thursday; public Hours getThursday() { return this.thursday; } public void setThursday(Hours thursday) { this.thursday = thursday; } /** * The Tuesday label array describes the range of hours this location is normally open on Tuesdays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours tuesday; public Hours getTuesday() { return this.tuesday; } public void setTuesday(Hours tuesday) { this.tuesday = tuesday; } /** * The Wednesday label array describes the range of hours this location is normally open on Wednesdays. For example: {"Label": "10:00 AM - 6:00 PM"}. */ protected Hours wednesday; public Hours getWednesday() { return this.wednesday; } public void setWednesday(Hours wednesday) { this.wednesday = wednesday; } }