/*
 * 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/talent/v4/job_service.proto

package com.google.cloud.talent.v4;

public interface JobResultOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4.JobResult)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Here [Job][google.cloud.talent.v4.Job] only contains basic information
   * including [name][google.cloud.talent.v4.Job.name],
   * [company][google.cloud.talent.v4.Job.company],
   * [language_code][google.cloud.talent.v4.Job.language_code] and
   * [requisition_id][google.cloud.talent.v4.Job.requisition_id], use getJob
   * method to retrieve detailed information of the created/updated job.
   * </pre>
   *
   * <code>.google.cloud.talent.v4.Job job = 1;</code>
   *
   * @return Whether the job field is set.
   */
  boolean hasJob();
  /**
   *
   *
   * <pre>
   * Here [Job][google.cloud.talent.v4.Job] only contains basic information
   * including [name][google.cloud.talent.v4.Job.name],
   * [company][google.cloud.talent.v4.Job.company],
   * [language_code][google.cloud.talent.v4.Job.language_code] and
   * [requisition_id][google.cloud.talent.v4.Job.requisition_id], use getJob
   * method to retrieve detailed information of the created/updated job.
   * </pre>
   *
   * <code>.google.cloud.talent.v4.Job job = 1;</code>
   *
   * @return The job.
   */
  com.google.cloud.talent.v4.Job getJob();
  /**
   *
   *
   * <pre>
   * Here [Job][google.cloud.talent.v4.Job] only contains basic information
   * including [name][google.cloud.talent.v4.Job.name],
   * [company][google.cloud.talent.v4.Job.company],
   * [language_code][google.cloud.talent.v4.Job.language_code] and
   * [requisition_id][google.cloud.talent.v4.Job.requisition_id], use getJob
   * method to retrieve detailed information of the created/updated job.
   * </pre>
   *
   * <code>.google.cloud.talent.v4.Job job = 1;</code>
   */
  com.google.cloud.talent.v4.JobOrBuilder getJobOrBuilder();

  /**
   *
   *
   * <pre>
   * The status of the job processed. This field is populated if the
   * processing of the [job][google.cloud.talent.v4.JobResult.job] fails.
   * </pre>
   *
   * <code>.google.rpc.Status status = 2;</code>
   *
   * @return Whether the status field is set.
   */
  boolean hasStatus();
  /**
   *
   *
   * <pre>
   * The status of the job processed. This field is populated if the
   * processing of the [job][google.cloud.talent.v4.JobResult.job] fails.
   * </pre>
   *
   * <code>.google.rpc.Status status = 2;</code>
   *
   * @return The status.
   */
  com.google.rpc.Status getStatus();
  /**
   *
   *
   * <pre>
   * The status of the job processed. This field is populated if the
   * processing of the [job][google.cloud.talent.v4.JobResult.job] fails.
   * </pre>
   *
   * <code>.google.rpc.Status status = 2;</code>
   */
  com.google.rpc.StatusOrBuilder getStatusOrBuilder();
}
