Class ApplicationDateFilter

public sealed class ApplicationDateFilter : IMessage<ApplicationDateFilter>, IEquatable<ApplicationDateFilter>, IDeepCloneable<ApplicationDateFilter>, IBufferMessage, IMessage

Application Date Range Filter.

The API matches profiles with [Application.application_date][google.cloud.talent.v4beta1.Application.application_date] between start date and end date (both boundaries are inclusive). The filter is ignored if both [start_date][google.cloud.talent.v4beta1.ApplicationDateFilter.start_date] and [end_date][google.cloud.talent.v4beta1.ApplicationDateFilter.end_date] are missing.

Inheritance

Object > ApplicationDateFilter

Namespace

Google.Cloud.Talent.V4Beta1

Assembly

Google.Cloud.Talent.V4Beta1.dll

Constructors

ApplicationDateFilter()

public ApplicationDateFilter()

ApplicationDateFilter(ApplicationDateFilter)

public ApplicationDateFilter(ApplicationDateFilter other)
Parameter
NameDescription
otherApplicationDateFilter

Properties

EndDate

public Date EndDate { get; set; }

End date. If it's missing, The API matches profiles with application date not before the start date.

Property Value
TypeDescription
Date

StartDate

public Date StartDate { get; set; }

Start date. If it's missing, The API matches profiles with application date not after the end date.

Property Value
TypeDescription
Date