1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/apps/script/type/script_manifest.proto 18 19 package com.google.apps.script.type; 20 21 public interface LayoutPropertiesOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.apps.script.type.LayoutProperties) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * The primary color of the add-on. It sets the color of toolbar. If no 31 * primary color is set explicitly, the default value provided by the 32 * framework is used. 33 * </pre> 34 * 35 * <code>string primary_color = 1;</code> 36 * 37 * @return The primaryColor. 38 */ getPrimaryColor()39 java.lang.String getPrimaryColor(); 40 /** 41 * 42 * 43 * <pre> 44 * The primary color of the add-on. It sets the color of toolbar. If no 45 * primary color is set explicitly, the default value provided by the 46 * framework is used. 47 * </pre> 48 * 49 * <code>string primary_color = 1;</code> 50 * 51 * @return The bytes for primaryColor. 52 */ getPrimaryColorBytes()53 com.google.protobuf.ByteString getPrimaryColorBytes(); 54 55 /** 56 * 57 * 58 * <pre> 59 * The secondary color of the add-on. It sets the color of buttons. 60 * If primary color is set but no secondary color is set, the 61 * secondary color is the same as the primary color. If neither primary 62 * color nor secondary color is set, the default value provided by the 63 * framework is used. 64 * </pre> 65 * 66 * <code>string secondary_color = 2;</code> 67 * 68 * @return The secondaryColor. 69 */ getSecondaryColor()70 java.lang.String getSecondaryColor(); 71 /** 72 * 73 * 74 * <pre> 75 * The secondary color of the add-on. It sets the color of buttons. 76 * If primary color is set but no secondary color is set, the 77 * secondary color is the same as the primary color. If neither primary 78 * color nor secondary color is set, the default value provided by the 79 * framework is used. 80 * </pre> 81 * 82 * <code>string secondary_color = 2;</code> 83 * 84 * @return The bytes for secondaryColor. 85 */ getSecondaryColorBytes()86 com.google.protobuf.ByteString getSecondaryColorBytes(); 87 } 88