Skip to content

Commit

Permalink
feat: Run the code generator (085c11e) (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot committed May 30, 2023
1 parent 53cdc92 commit af5fcc2
Show file tree
Hide file tree
Showing 43 changed files with 65,891 additions and 0 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
* Copyright 2023 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/events/cloud/video/transcoder/v1/data.proto

package com.google.events.cloud.video.transcoder.v1;

public interface AdBreakOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.events.cloud.video.transcoder.v1.AdBreak)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* Start time in seconds for the ad break, relative to the output file
* timeline. The default is `0s`.
* </pre>
*
* <code>.google.protobuf.Duration start_time_offset = 1;</code>
*
* @return Whether the startTimeOffset field is set.
*/
boolean hasStartTimeOffset();
/**
*
*
* <pre>
* Start time in seconds for the ad break, relative to the output file
* timeline. The default is `0s`.
* </pre>
*
* <code>.google.protobuf.Duration start_time_offset = 1;</code>
*
* @return The startTimeOffset.
*/
com.google.protobuf.Duration getStartTimeOffset();
/**
*
*
* <pre>
* Start time in seconds for the ad break, relative to the output file
* timeline. The default is `0s`.
* </pre>
*
* <code>.google.protobuf.Duration start_time_offset = 1;</code>
*/
com.google.protobuf.DurationOrBuilder getStartTimeOffsetOrBuilder();
}

0 comments on commit af5fcc2

Please sign in to comment.