/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/channel/v1/reports_service.proto

package com.google.cloud.channel.v1;

public interface DateRangeOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.channel.v1.DateRange)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * The earliest usage date time (inclusive).
   * If you use time groupings (daily, weekly, etc), each group uses
   * midnight to midnight (Pacific time). The usage start date is
   * rounded down to include all usage from the specified date. We recommend
   * that clients pass `usage_start_date_time` in Pacific time.
   * </pre>
   *
   * <code>.google.type.DateTime usage_start_date_time = 1;</code>
   *
   * @return Whether the usageStartDateTime field is set.
   */
  boolean hasUsageStartDateTime();
  /**
   *
   *
   * <pre>
   * The earliest usage date time (inclusive).
   * If you use time groupings (daily, weekly, etc), each group uses
   * midnight to midnight (Pacific time). The usage start date is
   * rounded down to include all usage from the specified date. We recommend
   * that clients pass `usage_start_date_time` in Pacific time.
   * </pre>
   *
   * <code>.google.type.DateTime usage_start_date_time = 1;</code>
   *
   * @return The usageStartDateTime.
   */
  com.google.type.DateTime getUsageStartDateTime();
  /**
   *
   *
   * <pre>
   * The earliest usage date time (inclusive).
   * If you use time groupings (daily, weekly, etc), each group uses
   * midnight to midnight (Pacific time). The usage start date is
   * rounded down to include all usage from the specified date. We recommend
   * that clients pass `usage_start_date_time` in Pacific time.
   * </pre>
   *
   * <code>.google.type.DateTime usage_start_date_time = 1;</code>
   */
  com.google.type.DateTimeOrBuilder getUsageStartDateTimeOrBuilder();

  /**
   *
   *
   * <pre>
   * The latest usage date time (exclusive).
   * If you use time groupings (daily, weekly, etc), each group uses
   * midnight to midnight (Pacific time). The usage end date is
   * rounded down to include all usage from the specified date. We recommend
   * that clients pass `usage_start_date_time` in Pacific time.
   * </pre>
   *
   * <code>.google.type.DateTime usage_end_date_time = 2;</code>
   *
   * @return Whether the usageEndDateTime field is set.
   */
  boolean hasUsageEndDateTime();
  /**
   *
   *
   * <pre>
   * The latest usage date time (exclusive).
   * If you use time groupings (daily, weekly, etc), each group uses
   * midnight to midnight (Pacific time). The usage end date is
   * rounded down to include all usage from the specified date. We recommend
   * that clients pass `usage_start_date_time` in Pacific time.
   * </pre>
   *
   * <code>.google.type.DateTime usage_end_date_time = 2;</code>
   *
   * @return The usageEndDateTime.
   */
  com.google.type.DateTime getUsageEndDateTime();
  /**
   *
   *
   * <pre>
   * The latest usage date time (exclusive).
   * If you use time groupings (daily, weekly, etc), each group uses
   * midnight to midnight (Pacific time). The usage end date is
   * rounded down to include all usage from the specified date. We recommend
   * that clients pass `usage_start_date_time` in Pacific time.
   * </pre>
   *
   * <code>.google.type.DateTime usage_end_date_time = 2;</code>
   */
  com.google.type.DateTimeOrBuilder getUsageEndDateTimeOrBuilder();

  /**
   *
   *
   * <pre>
   * The earliest invoice date (inclusive).
   * If your product uses monthly invoices, and this value is not the beginning
   * of a month, this will adjust the date to the first day of the given month.
   * </pre>
   *
   * <code>.google.type.Date invoice_start_date = 3;</code>
   *
   * @return Whether the invoiceStartDate field is set.
   */
  boolean hasInvoiceStartDate();
  /**
   *
   *
   * <pre>
   * The earliest invoice date (inclusive).
   * If your product uses monthly invoices, and this value is not the beginning
   * of a month, this will adjust the date to the first day of the given month.
   * </pre>
   *
   * <code>.google.type.Date invoice_start_date = 3;</code>
   *
   * @return The invoiceStartDate.
   */
  com.google.type.Date getInvoiceStartDate();
  /**
   *
   *
   * <pre>
   * The earliest invoice date (inclusive).
   * If your product uses monthly invoices, and this value is not the beginning
   * of a month, this will adjust the date to the first day of the given month.
   * </pre>
   *
   * <code>.google.type.Date invoice_start_date = 3;</code>
   */
  com.google.type.DateOrBuilder getInvoiceStartDateOrBuilder();

  /**
   *
   *
   * <pre>
   * The latest invoice date (exclusive).
   * If your product uses monthly invoices, and this value is not the beginning
   * of a month, this will adjust the date to the first day of the following
   * month.
   * </pre>
   *
   * <code>.google.type.Date invoice_end_date = 4;</code>
   *
   * @return Whether the invoiceEndDate field is set.
   */
  boolean hasInvoiceEndDate();
  /**
   *
   *
   * <pre>
   * The latest invoice date (exclusive).
   * If your product uses monthly invoices, and this value is not the beginning
   * of a month, this will adjust the date to the first day of the following
   * month.
   * </pre>
   *
   * <code>.google.type.Date invoice_end_date = 4;</code>
   *
   * @return The invoiceEndDate.
   */
  com.google.type.Date getInvoiceEndDate();
  /**
   *
   *
   * <pre>
   * The latest invoice date (exclusive).
   * If your product uses monthly invoices, and this value is not the beginning
   * of a month, this will adjust the date to the first day of the following
   * month.
   * </pre>
   *
   * <code>.google.type.Date invoice_end_date = 4;</code>
   */
  com.google.type.DateOrBuilder getInvoiceEndDateOrBuilder();
}
