// 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.
// Note: this file is purely for documentation. Any contents are not expected
// to be loaded as the JS file.
/**
* A resource that represents the profile for a job candidate (also referred to
* as a "single-source profile").
*
* @property {string} name
* Required during profile update.
*
* Resource name assigned to a profile by the API.
*
* The format is
* "projects/{project_id}/tenants/{tenant_id}/profiles/{profile_id}",
* for example, "projects/foo/tenants/bar/profiles/baz".
*
* @property {string} externalId
* Profile's id in client system, if available. This value is unique for each
* profile inside a tenant. An error is thrown if another profile with the
* same external_id is created.
*
* The maximum number of bytes allowed is 100.
*
* @property {string} source
* The source description indicating where the profile is acquired.
*
* For example, if a candidate profile is acquired from a resume, the user can
* input "resume" here to indicate the source.
*
* The maximum number of bytes allowed is 100.
*
* @property {string} uri
* The URI set by clients that links to this profile's client-side copy.
*
* The maximum number of bytes allowed is 4000.
*
* @property {string} groupId
* The cluster id of the profile to associate with other profile(s) for the
* same candidate.
*
* This field should be generated by the customer. If a value is not provided,
* a random UUID is assigned to this field of the profile.
*
* This is used to link multiple profiles to the same candidate. For example,
* a client has a candidate with two profiles, where one was created recently
* and the other one was created 5 years ago. These two profiles may be very
* different. The clients can create the first profile and get a generated
* group_id, and assign it when the second profile is created,
* indicating these two profiles are referring to the same candidate.
*
* @property {Object} isHirable
* Indicates the hirable status of the candidate.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @property {Object} createTime
* The timestamp when the profile was first created at this source.
*
* This object should have the same structure as [Timestamp]{@link google.protobuf.Timestamp}
*
* @property {Object} updateTime
* The timestamp when the profile was last updated at this source.
*
* This object should have the same structure as [Timestamp]{@link google.protobuf.Timestamp}
*
* @property {Object} candidateUpdateTime
* The timestamp when the profile was last updated as a result of a direct or
* indirect action by a candidate.
*
* These actions include:
*
* * Direct actions such as the candidate submitting a new resume as part of a
* job application to the agency, using a self-service tool such as a website
* to update their profile, and so on.
* * Indirect actions by the candidate such as uploading a resume to a job
* board that is collected by the agency through a feed, providing a resume to
* a recruiter who then uploads it into the ATS, and so on.
* * Updates made to the candidate's profile by the recruiter as a result of
* interacting with the candidate (for example adding a skill or work
* preference, and so on). Changes to recruiting_notes are specifically
* excluded from this action type.
*
* Note: candidate_update_time must be greater than or equal to
* resume_update_time or an error is thrown.
*
* This object should have the same structure as [Timestamp]{@link google.protobuf.Timestamp}
*
* @property {Object} resumeUpdateTime
* The timestamp when the candidate's resume was added or updated on the
* candidate's profile. Whether that resume was directly uploaded by a
* candidate, pulled from a 3rd party job board feed, added by a recruiter,
* and so on.
*
* If this field is updated, it's expected that resume is provided in
* the create or update calls.
*
* This object should have the same structure as [Timestamp]{@link google.protobuf.Timestamp}
*
* @property {Object} resume
* The resume representing this profile.
*
* This object should have the same structure as [Resume]{@link google.cloud.talent.v4beta1.Resume}
*
* @property {Object[]} personNames
* The names of the candidate this profile references.
*
* Currently only one person name is supported.
*
* This object should have the same structure as [PersonName]{@link google.cloud.talent.v4beta1.PersonName}
*
* @property {Object[]} addresses
* The candidate's postal addresses. It's highly recommended to
* input this information as accurately as possible to help improve search
* quality. Here are some recommendations:
*
* * Provide Address.usage if possible, especially if the address is
* PERSONAL. During a search only personal addresses are considered. If there
* is no such address, all addresses with unspecified usage are assumed to be
* personal.
* * Provide Address.current for the current address if possible. During
* a search, only current addresses are considered. If there is no such
* address, all addresses are assumed to be current.
*
* When displaying a candidate's addresses, it is sometimes desirable to limit
* the number of addresses shown. In these cases we recommend that you display
* the addresses in the following order of priority:
* 1. Address.usage is PERSONAL and Address.current is true.
* 2. Address.usage is PERSONAL and Address.current is false or not
* set.
* 3. Address.usage is CONTACT_INFO_USAGE_UNSPECIFIED and
* Address.current is true.
* 4. Address.usage is CONTACT_INFO_USAGE_UNSPECIFIED and
* Address.current is false or not set.
*
* This object should have the same structure as [Address]{@link google.cloud.talent.v4beta1.Address}
*
* @property {Object[]} emailAddresses
* The candidate's email addresses.
*
* This object should have the same structure as [Email]{@link google.cloud.talent.v4beta1.Email}
*
* @property {Object[]} phoneNumbers
* The candidate's phone number(s).
*
* This object should have the same structure as [Phone]{@link google.cloud.talent.v4beta1.Phone}
*
* @property {Object[]} personalUris
* The candidate's personal URIs.
*
* This object should have the same structure as [PersonalUri]{@link google.cloud.talent.v4beta1.PersonalUri}
*
* @property {Object[]} additionalContactInfo
* Available contact information besides addresses, email_addresses,
* phone_numbers and personal_uris. For example, Hang-out, Skype.
*
* This object should have the same structure as [AdditionalContactInfo]{@link google.cloud.talent.v4beta1.AdditionalContactInfo}
*
* @property {Object[]} employmentRecords
* The employment history records of the candidate. It's highly recommended
* to input this information as accurately as possible to help improve search
* quality. Here are some recommendations:
*
* * Specify the start and end dates of the employment records.
* * List different employment types separately, no matter how minor the
* change is.
* For example, only job title is changed from "software engineer" to "senior
* software engineer".
* * Provide EmploymentRecord.is_current for the current employment if
* possible. If not, it's inferred from user inputs.
*
* The limitation for max number of employment records is 100.
*
* This object should have the same structure as [EmploymentRecord]{@link google.cloud.talent.v4beta1.EmploymentRecord}
*
* @property {Object[]} educationRecords
* The education history record of the candidate. It's highly recommended to
* input this information as accurately as possible to help improve search
* quality. Here are some recommendations:
*
* * Specify the start and end dates of the education records.
* * List each education type separately, no matter how minor the change is.
* For example, the profile contains the education experience from the same
* school but different degrees.
* * Provide EducationRecord.is_current for the current education if
* possible. If not, it's inferred from user inputs.
*
* The limitation for max number of education records is 100.
*
* This object should have the same structure as [EducationRecord]{@link google.cloud.talent.v4beta1.EducationRecord}
*
* @property {Object[]} skills
* The skill set of the candidate. It's highly recommended to provide as
* much information as possible to help improve the search quality.
*
* The limitation for max number of skills is 500.
*
* This object should have the same structure as [Skill]{@link google.cloud.talent.v4beta1.Skill}
*
* @property {Object[]} activities
* The individual or collaborative activities which the candidate has
* participated in, for example, open-source projects, class assignments that
* aren't listed in employment_records.
*
* The limitation for max number of activities is 50.
*
* This object should have the same structure as [Activity]{@link google.cloud.talent.v4beta1.Activity}
*
* @property {Object[]} publications
* The publications published by the candidate.
*
* The limitation for max number of publications is 50.
*
* This object should have the same structure as [Publication]{@link google.cloud.talent.v4beta1.Publication}
*
* @property {Object[]} patents
* The patents acquired by the candidate.
*
* This object should have the same structure as [Patent]{@link google.cloud.talent.v4beta1.Patent}
*
* @property {Object[]} certifications
* The certifications acquired by the candidate.
*
* This object should have the same structure as [Certification]{@link google.cloud.talent.v4beta1.Certification}
*
* @property {string[]} applications
* Output only. The resource names of the candidate's applications.
*
* @property {string[]} assignments
* Output only. The resource names of the candidate's assignments.
*
* @property {Object.<string, Object>} customAttributes
* A map of fields to hold both filterable and non-filterable custom profile
* attributes that aren't covered by the provided structured fields. See
* CustomAttribute for more details.
*
* At most 100 filterable and at most 100 unfilterable keys are supported. If
* limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
* by default. These are filterable when the `filterable` flag is set to
* `true`.
*
* Numeric custom attributes: each key can only map to one numeric value,
* otherwise an error is thrown. Client can also filter on numeric custom
* attributes using '>', '<' or '=' operators.
*
* String custom attributes: each key can map up to 50 string values. For
* filterable string value, each value has a byte size of no more than 256B.
* For unfilterable string values, the maximum byte size of a single key is
* 64B. An error is thrown for any request exceeding the limit.
* The maximum total byte size is 10KB.
*
* @property {boolean} processed
* Output only. Indicates if a summarized profile was created as part of the
* profile creation API call. This flag does not indicate whether a profile is
* searchable or not.
*
* @property {string} keywordSnippet
* Output only. Keyword snippet shows how the search result is related to a
* search query. This is only returned in SearchProfilesResponse.
*
* @property {Object[]} availabilitySignals
* Output only. Candidate's availability signals.
*
* This object should have the same structure as [AvailabilitySignal]{@link google.cloud.talent.v4beta1.AvailabilitySignal}
*
* @property {Object[]} derivedAddresses
* Output only. Derived locations of the profile, resolved from Profile.addresses.
*
* derived_addresses are exactly matched to Profile.addresses in the
* same order.
*
* This object should have the same structure as [Location]{@link google.cloud.talent.v4beta1.Location}
*
* @typedef Profile
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Profile definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Profile = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Candidate availability signal.
*
* @property {number} type
* Type of signal.
*
* The number should be among the values of [AvailabilitySignalType]{@link google.cloud.talent.v4beta1.AvailabilitySignalType}
*
* @property {Object} lastUpdateTime
* Timestamp of when the given availability activity last happened.
*
* This object should have the same structure as [Timestamp]{@link google.protobuf.Timestamp}
*
* @property {Object} filterSatisfied
* Indicates if the last_update_time is within
* AvailabilityFilter.range.
*
* Returned only in a search response when there is an AvailabilityFilter
* in ProfileQuery.availability_filters where
* signal_type matches type.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @typedef AvailabilitySignal
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.AvailabilitySignal definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const AvailabilitySignal = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents a resume.
*
* @property {string} structuredResume
* Users can create a profile with only this field field, if resume_type
* is HRXML. For example, the API parses this field and
* creates a profile
* with all structured fields populated. EmploymentRecord,
* EducationRecord, and so on. An error is thrown if this field cannot be
* parsed.
*
* Note that the use of the functionality offered by this field to extract
* data from resumes is an Alpha feature and as such is not covered by any
* SLA.
*
* @property {number} resumeType
* The format of structured_resume.
*
* The number should be among the values of [ResumeType]{@link google.cloud.talent.v4beta1.ResumeType}
*
* @typedef Resume
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Resume definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Resume = {
// This is for documentation. Actual contents will be loaded by gRPC.
/**
* The format of a structured resume.
*
* @enum {number}
* @memberof google.cloud.talent.v4beta1
*/
ResumeType: {
/**
* Default value.
*/
RESUME_TYPE_UNSPECIFIED: 0,
/**
* The profile contents in HR-XML format.
* See https://schemas.liquid-technologies.com/hr-xml/2007-04-15/ for more
* information about Human Resources XML.
*/
HRXML: 1,
/**
* Resume type not specified.
*/
OTHER_RESUME_TYPE: 2
}
};
/**
* Resource that represents the name of a person.
*
* @property {string} formattedName
* A string represents a person's full name. For example, "Dr. John Smith".
*
* Number of characters allowed is 100.
*
* @property {Object} structuredName
* A person's name in a structured way (last name, first name, suffix, and
* so on.)
*
* This object should have the same structure as [PersonStructuredName]{@link google.cloud.talent.v4beta1.PersonStructuredName}
*
* @property {string} preferredName
* Preferred name for the person. This field is ignored if structured_name
* is provided.
*
* Number of characters allowed is 100.
*
* @typedef PersonName
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.PersonName definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const PersonName = {
// This is for documentation. Actual contents will be loaded by gRPC.
/**
* Resource that represents a person's structured name.
*
* @property {string} givenName
* Given/first name.
*
* It's derived from formatted_name if not provided.
*
* Number of characters allowed is 100.
*
* @property {string} preferredName
* Preferred given/first name or nickname.
*
* Number of characters allowed is 100.
*
* @property {string} middleInitial
* Middle initial.
*
* It's derived from formatted_name if not provided.
*
* Number of characters allowed is 20.
*
* @property {string} familyName
* Family/last name.
*
* It's derived from formatted_name if not provided.
*
* Number of characters allowed is 100.
*
* @property {string[]} suffixes
* Suffixes.
*
* Number of characters allowed is 20.
*
* @property {string[]} prefixes
* Prefixes.
*
* Number of characters allowed is 20.
*
* @typedef PersonStructuredName
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.PersonName.PersonStructuredName definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
PersonStructuredName: {
// This is for documentation. Actual contents will be loaded by gRPC.
}
};
/**
* Resource that represents a address.
*
* @property {number} usage
* The usage of the address. For example, SCHOOL, WORK, PERSONAL.
*
* The number should be among the values of [ContactInfoUsage]{@link google.cloud.talent.v4beta1.ContactInfoUsage}
*
* @property {string} unstructuredAddress
* Unstructured address.
*
* For example, "1600 Amphitheatre Pkwy, Mountain View, CA 94043",
* "Sunnyvale, California".
*
* Number of characters allowed is 100.
*
* @property {Object} structuredAddress
* Structured address that contains street address, city, state, country,
* and so on.
*
* This object should have the same structure as [PostalAddress]{@link google.type.PostalAddress}
*
* @property {Object} current
* Indicates if it's the person's current address.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @typedef Address
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Address definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Address = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents a person's email address.
*
* @property {number} usage
* The usage of the email address. For example, SCHOOL, WORK, PERSONAL.
*
* The number should be among the values of [ContactInfoUsage]{@link google.cloud.talent.v4beta1.ContactInfoUsage}
*
* @property {string} emailAddress
* Email address.
*
* Number of characters allowed is 4,000.
*
* @typedef Email
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Email definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Email = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents a person's telephone number.
*
* @property {number} usage
* The usage of the phone. For example, SCHOOL, WORK, PERSONAL.
*
* The number should be among the values of [ContactInfoUsage]{@link google.cloud.talent.v4beta1.ContactInfoUsage}
*
* @property {number} type
* The phone type. For example, LANDLINE, MOBILE, FAX.
*
* The number should be among the values of [PhoneType]{@link google.cloud.talent.v4beta1.PhoneType}
*
* @property {string} number
* Phone number.
*
* Any phone formats are supported and only exact matches are performed on
* searches. For example, if a phone number in profile is provided in the
* format of "(xxx)xxx-xxxx", in profile searches the same phone format
* has to be provided.
*
* Number of characters allowed is 20.
*
* @property {string} whenAvailable
* When this number is available. Any descriptive string is expected.
*
* Number of characters allowed is 100.
*
* @typedef Phone
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Phone definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Phone = {
// This is for documentation. Actual contents will be loaded by gRPC.
/**
* Enum that represents the type of the telephone.
*
* @enum {number}
* @memberof google.cloud.talent.v4beta1
*/
PhoneType: {
/**
* Default value.
*/
PHONE_TYPE_UNSPECIFIED: 0,
/**
* A landline.
*/
LANDLINE: 1,
/**
* A mobile.
*/
MOBILE: 2,
/**
* A fax.
*/
FAX: 3,
/**
* A pager.
*/
PAGER: 4,
/**
* A TTY (test telephone) or TDD (telecommunication device for the deaf).
*/
TTY_OR_TDD: 5,
/**
* A voicemail.
*/
VOICEMAIL: 6,
/**
* A virtual telephone number is a number that can be routed to another
* number and managed by the user via Web, SMS, IVR, and so on. It is
* associated with a particular person, and may be routed to either a MOBILE
* or LANDLINE number. The phone usage should
* be set to PERSONAL for these phone types. Some more information can be
* found here: https://en.wikipedia.org/wiki/Personal_Numbers
*/
VIRTUAL: 7,
/**
* Voice over IP numbers. This includes TSoIP (Telephony Service over IP).
*/
VOIP: 8,
/**
* In some regions (e.g. the USA), it is impossible to distinguish between
* fixed-line and mobile numbers by looking at the phone number itself.
*/
MOBILE_OR_LANDLINE: 9
}
};
/**
* Resource that represents a valid URI for a personal use.
*
* @property {string} uri
* The personal URI.
*
* Number of characters allowed is 4,000.
*
* @typedef PersonalUri
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.PersonalUri definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const PersonalUri = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents contact information other than phone, email,
* URI and addresses.
*
* @property {number} usage
* The usage of this contact method. For example, SCHOOL, WORK, PERSONAL.
*
* The number should be among the values of [ContactInfoUsage]{@link google.cloud.talent.v4beta1.ContactInfoUsage}
*
* @property {string} name
* The name of the contact method.
*
* For example, "hangout", "skype".
*
* Number of characters allowed is 100.
*
* @property {string} contactId
* The contact id.
*
* Number of characters allowed is 100.
*
* @typedef AdditionalContactInfo
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.AdditionalContactInfo definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const AdditionalContactInfo = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents an employment record of a candidate.
*
* @property {Object} startDate
* Start date of the employment.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {Object} endDate
* End date of the employment.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {string} employerName
* The name of the employer company/organization.
*
* For example, "Google", "Alphabet", and so on.
*
* Number of characters allowed is 250.
*
* @property {string} divisionName
* The division name of the employment.
*
* For example, division, department, client, and so on.
*
* Number of characters allowed is 100.
*
* @property {Object} address
* The physical address of the employer.
*
* This object should have the same structure as [Address]{@link google.cloud.talent.v4beta1.Address}
*
* @property {string} jobTitle
* The job title of the employment.
*
* For example, "Software Engineer", "Data Scientist", and so on.
*
* Number of characters allowed is 250.
*
* @property {string} jobDescription
* The description of job content.
*
* Number of characters allowed is 100,000.
*
* @property {Object} isSupervisor
* If the jobs is a supervisor position.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @property {Object} isSelfEmployed
* If this employment is self-employed.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @property {Object} isCurrent
* If this employment is current.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @property {string} jobTitleSnippet
* Output only. The job title snippet shows how the job_title is related
* to a search query. It's empty if the job_title isn't related to the
* search query.
*
* @property {string} jobDescriptionSnippet
* Output only. The job description snippet shows how the job_description
* is related to a search query. It's empty if the job_description isn't
* related to the search query.
*
* @property {string} employerNameSnippet
* Output only. The employer name snippet shows how the employer_name is
* related to a search query. It's empty if the employer_name isn't
* related to the search query.
*
* @typedef EmploymentRecord
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.EmploymentRecord definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const EmploymentRecord = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents an education record of a candidate.
*
* @property {Object} startDate
* The start date of the education.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {Object} endDate
* The end date of the education.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {Object} expectedGraduationDate
* The expected graduation date if currently pursuing a degree.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {string} schoolName
* The name of the school or institution.
*
* For example, "Stanford University", "UC Berkeley", and so on.
*
* Number of characters allowed is 250.
*
* @property {Object} address
* The physical address of the education institution.
*
* This object should have the same structure as [Address]{@link google.cloud.talent.v4beta1.Address}
*
* @property {string} degreeDescription
* The full description of the degree.
*
* For example, "Master of Science in Computer Science", "B.S in Math".
*
* Number of characters allowed is 100.
*
* @property {Object} structuredDegree
* The structured notation of the degree.
*
* This object should have the same structure as [Degree]{@link google.cloud.talent.v4beta1.Degree}
*
* @property {string} description
* The description of the education.
*
* Number of characters allowed is 100,000.
*
* @property {Object} isCurrent
* If this education is current.
*
* This object should have the same structure as [BoolValue]{@link google.protobuf.BoolValue}
*
* @property {string} schoolNameSnippet
* Output only. The school name snippet shows how the school_name is related to a
* search query in search result. It's empty if the school_name isn't
* related to the search query.
*
* @property {string} degreeSnippet
* Output only. The job description snippet shows how the Degree is related to a search
* query in search result. It's empty if the Degree isn't related to the
* search query.
*
* @typedef EducationRecord
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.EducationRecord definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const EducationRecord = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents a degree pursuing or acquired by a candidate.
*
* @property {number} degreeType
* ISCED degree type.
*
* The number should be among the values of [DegreeType]{@link google.cloud.talent.v4beta1.DegreeType}
*
* @property {string} degreeName
* Full Degree name.
*
* For example, "B.S.", "Master of Arts", and so on.
*
* Number of characters allowed is 100.
*
* @property {string[]} fieldsOfStudy
* Fields of study for the degree.
*
* For example, "Computer science", "engineering".
*
* Number of characters allowed is 100.
*
* @typedef Degree
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Degree definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Degree = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents an individual or collaborative activity participated
* in by a candidate, for example, an open-source project, a class assignment,
* and so on.
*
* @property {string} displayName
* Activity display name.
*
* Number of characters allowed is 100.
*
* @property {string} description
* Activity description.
*
* Number of characters allowed is 100,000.
*
* @property {string} uri
* Activity URI.
*
* Number of characters allowed is 4,000.
*
* @property {Object} createDate
* The first creation date of the activity.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {Object} updateDate
* The last update date of the activity.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {string[]} teamMembers
* A list of team members involved in this activity.
*
* Number of characters allowed is 100.
*
* The limitation for max number of team members is 50.
*
* @property {Object[]} skillsUsed
* A list of skills used in this activity.
*
* The limitation for max number of skills used is 50.
*
* This object should have the same structure as [Skill]{@link google.cloud.talent.v4beta1.Skill}
*
* @property {string} activityNameSnippet
* Output only. Activity name snippet shows how the display_name is related to a search
* query. It's empty if the display_name isn't related to the search
* query.
*
* @property {string} activityDescriptionSnippet
* Output only. Activity description snippet shows how the
* description is related to a search query. It's empty if the
* description isn't related to the search query.
*
* @property {string[]} skillsUsedSnippet
* Output only. Skill used snippet shows how the corresponding
* skills_used are related to a search query. It's empty if the
* corresponding skills_used are not related to the search query.
*
* @typedef Activity
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Activity definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Activity = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents a publication resource of a candidate.
*
* @property {string[]} authors
* A list of author names.
*
* Number of characters allowed is 100.
*
* @property {string} title
* The title of the publication.
*
* Number of characters allowed is 100.
*
* @property {string} description
* The description of the publication.
*
* Number of characters allowed is 100,000.
*
* @property {string} journal
* The journal name of the publication.
*
* Number of characters allowed is 100.
*
* @property {string} volume
* Volume number.
*
* Number of characters allowed is 100.
*
* @property {string} publisher
* The publisher of the journal.
*
* Number of characters allowed is 100.
*
* @property {Object} publicationDate
* The publication date.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {string} publicationType
* The publication type.
*
* Number of characters allowed is 100.
*
* @property {string} isbn
* ISBN number.
*
* Number of characters allowed is 100.
*
* @typedef Publication
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Publication definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Publication = {
// This is for documentation. Actual contents will be loaded by gRPC.
};
/**
* Resource that represents the patent acquired by a candidate.
*
* @property {string} displayName
* Name of the patent.
*
* Number of characters allowed is 100.
*
* @property {string[]} inventors
* A list of inventors' names.
*
* Number of characters allowed for each is 100.
*
* @property {string} patentStatus
* The status of the patent.
*
* Number of characters allowed is 100.
*
* @property {Object} patentStatusDate
* The date the last time the status of the patent was checked.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {Object} patentFilingDate
* The date that the patent was filed.
*
* This object should have the same structure as [Date]{@link google.type.Date}
*
* @property {string} patentOffice
* The name of the patent office.
*
* Number of characters allowed is 100.
*
* @property {string} patentNumber
* The number of the patent.
*
* Number of characters allowed is 100.
*
* @property {string} patentDescription
* The description of the patent.
*
* Number of characters allowed is 100,000.
*
* @property {Object[]} skillsUsed
* The skills used in this patent.
*
* This object should have the same structure as [Skill]{@link google.cloud.talent.v4beta1.Skill}
*
* @typedef Patent
* @memberof google.cloud.talent.v4beta1
* @see [google.cloud.talent.v4beta1.Patent definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/cloud/talent/v4beta1/profile.proto}
*/
const Patent = {
// This is for documentation. Actual contents will be loaded by gRPC.
};