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

ServicesSkusListOptions

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

Additional options for CloudBilling#servicesSkusList.

interface ServicesSkusListOptions {
currencyCode?: string;
endTime?: Date;
pageSize?: number;
pageToken?: string;
startTime?: Date;
}

§Properties

§
currencyCode?: string
[src]

The ISO 4217 currency code for the pricing info in the response proto. Will use the conversion rate as of start_time. Optional. If not specified USD will be used.

§
endTime?: Date
[src]

Optional exclusive end time of the time range for which the pricing versions will be returned. Timestamps in the future are not allowed. The time range has to be within a single calendar month in America/Los_Angeles timezone. Time range as a whole is optional. If not specified, the latest pricing will be returned (up to 12 hours old at most).

§
pageSize?: number
[src]

Requested page size. Defaults to 5000.

§
pageToken?: string
[src]

A token identifying a page of results to return. This should be a next_page_token value returned from a previous ListSkus call. If unspecified, the first page of results is returned.

§
startTime?: Date
[src]

Optional inclusive start time of the time range for which the pricing versions will be returned. Timestamps in the future are not allowed. The time range has to be within a single calendar month in America/Los_Angeles timezone. Time range as a whole is optional. If not specified, the latest pricing will be returned (up to 12 hours old at most).