/*
 * 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/v1beta/resources.proto

package com.google.analytics.admin.v1beta;

public interface AccountSummaryOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.analytics.admin.v1beta.AccountSummary)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Resource name for this account summary.
   * Format: accountSummaries/{account_id}
   * Example: "accountSummaries/1000"
   * </pre>
   *
   * <code>string name = 1;</code>
   *
   * @return The name.
   */
  java.lang.String getName();
  /**
   *
   *
   * <pre>
   * Resource name for this account summary.
   * Format: accountSummaries/{account_id}
   * Example: "accountSummaries/1000"
   * </pre>
   *
   * <code>string name = 1;</code>
   *
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString getNameBytes();

  /**
   *
   *
   * <pre>
   * Resource name of account referred to by this account summary
   * Format: accounts/{account_id}
   * Example: "accounts/1000"
   * </pre>
   *
   * <code>string account = 2 [(.google.api.resource_reference) = { ... }</code>
   *
   * @return The account.
   */
  java.lang.String getAccount();
  /**
   *
   *
   * <pre>
   * Resource name of account referred to by this account summary
   * Format: accounts/{account_id}
   * Example: "accounts/1000"
   * </pre>
   *
   * <code>string account = 2 [(.google.api.resource_reference) = { ... }</code>
   *
   * @return The bytes for account.
   */
  com.google.protobuf.ByteString getAccountBytes();

  /**
   *
   *
   * <pre>
   * Display name for the account referred to in this account summary.
   * </pre>
   *
   * <code>string display_name = 3;</code>
   *
   * @return The displayName.
   */
  java.lang.String getDisplayName();
  /**
   *
   *
   * <pre>
   * Display name for the account referred to in this account summary.
   * </pre>
   *
   * <code>string display_name = 3;</code>
   *
   * @return The bytes for displayName.
   */
  com.google.protobuf.ByteString getDisplayNameBytes();

  /**
   *
   *
   * <pre>
   * List of summaries for child accounts of this account.
   * </pre>
   *
   * <code>repeated .google.analytics.admin.v1beta.PropertySummary property_summaries = 4;</code>
   */
  java.util.List<com.google.analytics.admin.v1beta.PropertySummary> getPropertySummariesList();
  /**
   *
   *
   * <pre>
   * List of summaries for child accounts of this account.
   * </pre>
   *
   * <code>repeated .google.analytics.admin.v1beta.PropertySummary property_summaries = 4;</code>
   */
  com.google.analytics.admin.v1beta.PropertySummary getPropertySummaries(int index);
  /**
   *
   *
   * <pre>
   * List of summaries for child accounts of this account.
   * </pre>
   *
   * <code>repeated .google.analytics.admin.v1beta.PropertySummary property_summaries = 4;</code>
   */
  int getPropertySummariesCount();
  /**
   *
   *
   * <pre>
   * List of summaries for child accounts of this account.
   * </pre>
   *
   * <code>repeated .google.analytics.admin.v1beta.PropertySummary property_summaries = 4;</code>
   */
  java.util.List<? extends com.google.analytics.admin.v1beta.PropertySummaryOrBuilder>
      getPropertySummariesOrBuilderList();
  /**
   *
   *
   * <pre>
   * List of summaries for child accounts of this account.
   * </pre>
   *
   * <code>repeated .google.analytics.admin.v1beta.PropertySummary property_summaries = 4;</code>
   */
  com.google.analytics.admin.v1beta.PropertySummaryOrBuilder getPropertySummariesOrBuilder(
      int index);
}
