001// Generated by delombok at Thu Aug 13 13:56:44 UTC 2026
002/*
003 * Copyright (c) 2010-2026 Mark Allen, Norbert Bartels.
004 *
005 * Permission is hereby granted, free of charge, to any person obtaining a copy
006 * of this software and associated documentation files (the "Software"), to deal
007 * in the Software without restriction, including without limitation the rights
008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
009 * copies of the Software, and to permit persons to whom the Software is
010 * furnished to do so, subject to the following conditions:
011 *
012 * The above copyright notice and this permission notice shall be included in
013 * all copies or substantial portions of the Software.
014 *
015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
021 * THE SOFTWARE.
022 */
023package com.restfb.types.whatsapp;
024
025import com.restfb.Facebook;
026import com.restfb.types.AbstractFacebookType;
027
028/**
029 * Represents the <a href="https://developers.facebook.com/docs/graph-api/reference/waba-analytics-data-point/">WABA
030 * (WhatsApp Business Account) Analytics Data Point type </a>
031 */
032public class WABAAnalyticsDataPoint extends AbstractFacebookType {
033  private static final long serialVersionUID = 1L;
034  /**
035   * Number of messages delivered
036   */
037  @Facebook
038  private Long delivered;
039  /**
040   * End time of this data point
041   */
042  @Facebook
043  private Long end;
044  /**
045   * Number of messages received
046   */
047  @Facebook
048  private Long received;
049  /**
050   * Number of messages sent
051   */
052  @Facebook
053  private Long sent;
054  /**
055   * Start time of this data point
056   */
057  @Facebook
058  private Long start;
059
060  /**
061   * Number of messages delivered
062   */
063  @java.lang.SuppressWarnings("all")
064  @lombok.Generated
065  public Long getDelivered() {
066    return this.delivered;
067  }
068
069  /**
070   * Number of messages delivered
071   */
072  @java.lang.SuppressWarnings("all")
073  @lombok.Generated
074  public void setDelivered(final Long delivered) {
075    this.delivered = delivered;
076  }
077
078  /**
079   * End time of this data point
080   */
081  @java.lang.SuppressWarnings("all")
082  @lombok.Generated
083  public Long getEnd() {
084    return this.end;
085  }
086
087  /**
088   * End time of this data point
089   */
090  @java.lang.SuppressWarnings("all")
091  @lombok.Generated
092  public void setEnd(final Long end) {
093    this.end = end;
094  }
095
096  /**
097   * Number of messages received
098   */
099  @java.lang.SuppressWarnings("all")
100  @lombok.Generated
101  public Long getReceived() {
102    return this.received;
103  }
104
105  /**
106   * Number of messages received
107   */
108  @java.lang.SuppressWarnings("all")
109  @lombok.Generated
110  public void setReceived(final Long received) {
111    this.received = received;
112  }
113
114  /**
115   * Number of messages sent
116   */
117  @java.lang.SuppressWarnings("all")
118  @lombok.Generated
119  public Long getSent() {
120    return this.sent;
121  }
122
123  /**
124   * Number of messages sent
125   */
126  @java.lang.SuppressWarnings("all")
127  @lombok.Generated
128  public void setSent(final Long sent) {
129    this.sent = sent;
130  }
131
132  /**
133   * Start time of this data point
134   */
135  @java.lang.SuppressWarnings("all")
136  @lombok.Generated
137  public Long getStart() {
138    return this.start;
139  }
140
141  /**
142   * Start time of this data point
143   */
144  @java.lang.SuppressWarnings("all")
145  @lombok.Generated
146  public void setStart(final Long start) {
147    this.start = start;
148  }
149}