Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudChannelV1DateRange

import type { GoogleCloudChannelV1DateRange } from "https://googleapis.deno.dev/v1/cloudchannel:v1.ts";

A representation of usage or invoice date ranges.

interface GoogleCloudChannelV1DateRange {
invoiceEndDate?: GoogleTypeDate;
invoiceStartDate?: GoogleTypeDate;
usageEndDateTime?: GoogleTypeDateTime;
usageStartDateTime?: GoogleTypeDateTime;
}

§Properties

§
invoiceEndDate?: GoogleTypeDate
[src]

The latest invoice date (inclusive). If this value is not the last day of a month, this will move it forward to the last day of the given month.

§
invoiceStartDate?: GoogleTypeDate
[src]

The earliest invoice date (inclusive). If this value is not the first day of a month, this will move it back to the first day of the given month.

§
usageEndDateTime?: GoogleTypeDateTime
[src]

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.

§
usageStartDateTime?: GoogleTypeDateTime
[src]

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.