/*
 * 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/cloud/domains/v1/domains.proto

package com.google.cloud.domains.v1;

public interface ContactSettingsOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.domains.v1.ContactSettings)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Required. Privacy setting for the contacts associated with the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactPrivacy privacy = 1 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The enum numeric value on the wire for privacy.
   */
  int getPrivacyValue();
  /**
   *
   *
   * <pre>
   * Required. Privacy setting for the contacts associated with the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactPrivacy privacy = 1 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The privacy.
   */
  com.google.cloud.domains.v1.ContactPrivacy getPrivacy();

  /**
   *
   *
   * <pre>
   * Required. The registrant contact for the `Registration`.
   * *Caution: Anyone with access to this email address, phone number,
   * and/or postal address can take control of the domain.*
   * *Warning: For new `Registration`s, the registrant receives an email
   * confirmation that they must complete within 15 days to avoid domain
   * suspension.*
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact registrant_contact = 2 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return Whether the registrantContact field is set.
   */
  boolean hasRegistrantContact();
  /**
   *
   *
   * <pre>
   * Required. The registrant contact for the `Registration`.
   * *Caution: Anyone with access to this email address, phone number,
   * and/or postal address can take control of the domain.*
   * *Warning: For new `Registration`s, the registrant receives an email
   * confirmation that they must complete within 15 days to avoid domain
   * suspension.*
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact registrant_contact = 2 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The registrantContact.
   */
  com.google.cloud.domains.v1.ContactSettings.Contact getRegistrantContact();
  /**
   *
   *
   * <pre>
   * Required. The registrant contact for the `Registration`.
   * *Caution: Anyone with access to this email address, phone number,
   * and/or postal address can take control of the domain.*
   * *Warning: For new `Registration`s, the registrant receives an email
   * confirmation that they must complete within 15 days to avoid domain
   * suspension.*
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact registrant_contact = 2 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  com.google.cloud.domains.v1.ContactSettings.ContactOrBuilder getRegistrantContactOrBuilder();

  /**
   *
   *
   * <pre>
   * Required. The administrative contact for the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact admin_contact = 3 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return Whether the adminContact field is set.
   */
  boolean hasAdminContact();
  /**
   *
   *
   * <pre>
   * Required. The administrative contact for the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact admin_contact = 3 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The adminContact.
   */
  com.google.cloud.domains.v1.ContactSettings.Contact getAdminContact();
  /**
   *
   *
   * <pre>
   * Required. The administrative contact for the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact admin_contact = 3 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  com.google.cloud.domains.v1.ContactSettings.ContactOrBuilder getAdminContactOrBuilder();

  /**
   *
   *
   * <pre>
   * Required. The technical contact for the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact technical_contact = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return Whether the technicalContact field is set.
   */
  boolean hasTechnicalContact();
  /**
   *
   *
   * <pre>
   * Required. The technical contact for the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact technical_contact = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   *
   * @return The technicalContact.
   */
  com.google.cloud.domains.v1.ContactSettings.Contact getTechnicalContact();
  /**
   *
   *
   * <pre>
   * Required. The technical contact for the `Registration`.
   * </pre>
   *
   * <code>
   * .google.cloud.domains.v1.ContactSettings.Contact technical_contact = 4 [(.google.api.field_behavior) = REQUIRED];
   * </code>
   */
  com.google.cloud.domains.v1.ContactSettings.ContactOrBuilder getTechnicalContactOrBuilder();
}
