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/cloud/talent/v4/job_service.proto 18 19 package com.google.cloud.talent.v4; 20 21 public interface JobResultOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.talent.v4.JobResult) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Here [Job][google.cloud.talent.v4.Job] only contains basic information 31 * including [name][google.cloud.talent.v4.Job.name], 32 * [company][google.cloud.talent.v4.Job.company], 33 * [language_code][google.cloud.talent.v4.Job.language_code] and 34 * [requisition_id][google.cloud.talent.v4.Job.requisition_id], use getJob 35 * method to retrieve detailed information of the created/updated job. 36 * </pre> 37 * 38 * <code>.google.cloud.talent.v4.Job job = 1;</code> 39 * 40 * @return Whether the job field is set. 41 */ hasJob()42 boolean hasJob(); 43 /** 44 * 45 * 46 * <pre> 47 * Here [Job][google.cloud.talent.v4.Job] only contains basic information 48 * including [name][google.cloud.talent.v4.Job.name], 49 * [company][google.cloud.talent.v4.Job.company], 50 * [language_code][google.cloud.talent.v4.Job.language_code] and 51 * [requisition_id][google.cloud.talent.v4.Job.requisition_id], use getJob 52 * method to retrieve detailed information of the created/updated job. 53 * </pre> 54 * 55 * <code>.google.cloud.talent.v4.Job job = 1;</code> 56 * 57 * @return The job. 58 */ getJob()59 com.google.cloud.talent.v4.Job getJob(); 60 /** 61 * 62 * 63 * <pre> 64 * Here [Job][google.cloud.talent.v4.Job] only contains basic information 65 * including [name][google.cloud.talent.v4.Job.name], 66 * [company][google.cloud.talent.v4.Job.company], 67 * [language_code][google.cloud.talent.v4.Job.language_code] and 68 * [requisition_id][google.cloud.talent.v4.Job.requisition_id], use getJob 69 * method to retrieve detailed information of the created/updated job. 70 * </pre> 71 * 72 * <code>.google.cloud.talent.v4.Job job = 1;</code> 73 */ getJobOrBuilder()74 com.google.cloud.talent.v4.JobOrBuilder getJobOrBuilder(); 75 76 /** 77 * 78 * 79 * <pre> 80 * The status of the job processed. This field is populated if the 81 * processing of the [job][google.cloud.talent.v4.JobResult.job] fails. 82 * </pre> 83 * 84 * <code>.google.rpc.Status status = 2;</code> 85 * 86 * @return Whether the status field is set. 87 */ hasStatus()88 boolean hasStatus(); 89 /** 90 * 91 * 92 * <pre> 93 * The status of the job processed. This field is populated if the 94 * processing of the [job][google.cloud.talent.v4.JobResult.job] fails. 95 * </pre> 96 * 97 * <code>.google.rpc.Status status = 2;</code> 98 * 99 * @return The status. 100 */ getStatus()101 com.google.rpc.Status getStatus(); 102 /** 103 * 104 * 105 * <pre> 106 * The status of the job processed. This field is populated if the 107 * processing of the [job][google.cloud.talent.v4.JobResult.job] fails. 108 * </pre> 109 * 110 * <code>.google.rpc.Status status = 2;</code> 111 */ getStatusOrBuilder()112 com.google.rpc.StatusOrBuilder getStatusOrBuilder(); 113 } 114