Class: Google::Cloud::Talent::V4beta1::Resume

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile.rb

Overview

Resource that represents a resume.

Defined Under Namespace

Modules: ResumeType

Instance Attribute Summary collapse

Instance Attribute Details

#resume_typeGoogle::Cloud::Talent::V4beta1::Resume::ResumeType

Returns Optional.

The format of structured_resume.



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile.rb', line 238

class Resume
  # The format of a structured resume.
  module ResumeType
    # Default value.
    RESUME_TYPE_UNSPECIFIED = 0

    # The profile contents in HR-XML format.
    # See http://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
  end
end

#structured_resumeString

Returns Optional.

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, for example. EmploymentRecord, EducationRecord, and so on. An error is thrown if this field cannot be parsed.

If this field is provided during profile creation or update, any other structured data provided in the profile is ignored. The API populates these fields by parsing this field.

Returns:

  • (String)

    Optional.

    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, for example. EmploymentRecord, EducationRecord, and so on. An error is thrown if this field cannot be parsed.

    If this field is provided during profile creation or update, any other structured data provided in the profile is ignored. The API populates these fields by parsing this field.



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile.rb', line 238

class Resume
  # The format of a structured resume.
  module ResumeType
    # Default value.
    RESUME_TYPE_UNSPECIFIED = 0

    # The profile contents in HR-XML format.
    # See http://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
  end
end