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

ScheduledOperationDetails

import type { ScheduledOperationDetails } from "https://googleapis.deno.dev/v1/oracledatabase:v1.ts";
interface ScheduledOperationDetails {
readonly dayOfWeek?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
readonly startTime?: TimeOfDay;
readonly stopTime?: TimeOfDay;
}

§Properties

§
readonly dayOfWeek?: "DAY_OF_WEEK_UNSPECIFIED" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"
[src]

Output only. Day of week.

§
readonly startTime?: TimeOfDay
[src]

Output only. Auto start time.

§
readonly stopTime?: TimeOfDay
[src]

Output only. Auto stop time.