/*
 * Copyright 2020 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/analytics/admin/v1alpha/channel_group.proto

package com.google.analytics.admin.v1alpha;

public interface ChannelGroupOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.analytics.admin.v1alpha.ChannelGroup)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Output only. The resource name for this Channel Group resource.
   * Format: properties/{property}/channelGroups/{channel_group}
   * </pre>
   *
   * <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
   *
   * @return The name.
   */
  java.lang.String getName();
  /**
   *
   *
   * <pre>
   * Output only. The resource name for this Channel Group resource.
   * Format: properties/{property}/channelGroups/{channel_group}
   * </pre>
   *
   * <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
   *
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString getNameBytes();

  /**
   *
   *
   * <pre>
   * Required. The display name of the Channel Group. Max length of 80
   * characters.
   * </pre>
   *
   * <code>string display_name = 2 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The displayName.
   */
  java.lang.String getDisplayName();
  /**
   *
   *
   * <pre>
   * Required. The display name of the Channel Group. Max length of 80
   * characters.
   * </pre>
   *
   * <code>string display_name = 2 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The bytes for displayName.
   */
  com.google.protobuf.ByteString getDisplayNameBytes();

  /**
   *
   *
   * <pre>
   * The description of the Channel Group. Max length of 256 characters.
   * </pre>
   *
   * <code>string description = 3;</code>
   *
   * @return The description.
   */
  java.lang.String getDescription();
  /**
   *
   *
   * <pre>
   * The description of the Channel Group. Max length of 256 characters.
   * </pre>
   *
   * <code>string description = 3;</code>
   *
   * @return The bytes for description.
   */
  com.google.protobuf.ByteString getDescriptionBytes();

  /**
   *
   *
   * <pre>
   * Required. The grouping rules of channels. Maximum number of rules is 25.
   * </pre>
   *
   * <code>
   * repeated .google.analytics.admin.v1alpha.GroupingRule grouping_rule = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  java.util.List<com.google.analytics.admin.v1alpha.GroupingRule> getGroupingRuleList();
  /**
   *
   *
   * <pre>
   * Required. The grouping rules of channels. Maximum number of rules is 25.
   * </pre>
   *
   * <code>
   * repeated .google.analytics.admin.v1alpha.GroupingRule grouping_rule = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  com.google.analytics.admin.v1alpha.GroupingRule getGroupingRule(int index);
  /**
   *
   *
   * <pre>
   * Required. The grouping rules of channels. Maximum number of rules is 25.
   * </pre>
   *
   * <code>
   * repeated .google.analytics.admin.v1alpha.GroupingRule grouping_rule = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  int getGroupingRuleCount();
  /**
   *
   *
   * <pre>
   * Required. The grouping rules of channels. Maximum number of rules is 25.
   * </pre>
   *
   * <code>
   * repeated .google.analytics.admin.v1alpha.GroupingRule grouping_rule = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  java.util.List<? extends com.google.analytics.admin.v1alpha.GroupingRuleOrBuilder>
      getGroupingRuleOrBuilderList();
  /**
   *
   *
   * <pre>
   * Required. The grouping rules of channels. Maximum number of rules is 25.
   * </pre>
   *
   * <code>
   * repeated .google.analytics.admin.v1alpha.GroupingRule grouping_rule = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  com.google.analytics.admin.v1alpha.GroupingRuleOrBuilder getGroupingRuleOrBuilder(int index);

  /**
   *
   *
   * <pre>
   * Output only. Default Channel Group defined by Google, which cannot be
   * updated.
   * </pre>
   *
   * <code>bool system_defined = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
   *
   * @return The systemDefined.
   */
  boolean getSystemDefined();
}
