CompanyArgs

data class CompanyArgs(val careerSiteUri: Output<String>? = null, val displayName: Output<String>? = null, val eeoText: Output<String>? = null, val externalId: Output<String>? = null, val headquartersAddress: Output<String>? = null, val hiringAgency: Output<Boolean>? = null, val imageUri: Output<String>? = null, val keywordSearchableJobCustomAttributes: Output<List<String>>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val size: Output<CompanySize>? = null, val websiteUri: Output<String>? = null) : ConvertibleToJava<CompanyArgs>

Creates a new company entity.

Constructors

Link copied to clipboard
constructor(careerSiteUri: Output<String>? = null, displayName: Output<String>? = null, eeoText: Output<String>? = null, externalId: Output<String>? = null, headquartersAddress: Output<String>? = null, hiringAgency: Output<Boolean>? = null, imageUri: Output<String>? = null, keywordSearchableJobCustomAttributes: Output<List<String>>? = null, name: Output<String>? = null, project: Output<String>? = null, size: Output<CompanySize>? = null, websiteUri: Output<String>? = null)

Properties

Link copied to clipboard
val careerSiteUri: Output<String>? = null

Optional. The URI to employer's career site or careers page on the employer's web site, for example, "https://careers.google.com".

Link copied to clipboard
val displayName: Output<String>? = null

The display name of the company, for example, "Google LLC".

Link copied to clipboard
val eeoText: Output<String>? = null

Optional. Equal Employment Opportunity legal disclaimer text to be associated with all jobs, and typically to be displayed in all roles. The maximum number of allowed characters is 500.

Link copied to clipboard
val externalId: Output<String>? = null

Client side company identifier, used to uniquely identify the company. The maximum number of allowed characters is 255.

Link copied to clipboard
val headquartersAddress: Output<String>? = null

Optional. The street address of the company's main headquarters, which may be different from the job location. The service attempts to geolocate the provided address, and populates a more specific location wherever possible in DerivedInfo.headquarters_location.

Link copied to clipboard
val hiringAgency: Output<Boolean>? = null

Optional. Set to true if it is the hiring agency that post jobs for other employers. Defaults to false if not provided.

Link copied to clipboard
val imageUri: Output<String>? = null

Optional. A URI that hosts the employer's company logo.

Link copied to clipboard

Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding string_values are used in keyword search. Jobs with string_values under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.

Link copied to clipboard
val name: Output<String>? = null

Required during company update. The resource name for a company. This is generated by the service when a company is created. The format is "projects/{project_id}/companies/{company_id}", for example, "projects/api-test-project/companies/foo".

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val size: Output<CompanySize>? = null

Optional. The employer's company size.

Link copied to clipboard
val websiteUri: Output<String>? = null

Optional. The URI representing the company's primary web site or home page, for example, "https://www.google.com". The maximum number of allowed characters is 255.

Functions

Link copied to clipboard
open override fun toJava(): CompanyArgs