Show / Hide Table of Contents

Class Person.AgeRangeData

The age range of the person. Valid ranges are 17 or younger, 18 to 20, and 21 or older. Age is determined from the user's birthday using Western age reckoning.

Inheritance
System.Object
Person.AgeRangeData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class AgeRangeData

Properties

Max

The age range's upper bound, if any. Possible values include, but are not limited to, the following: - "17" - for age 17 - "20" - for age 20

Declaration
[JsonProperty("max")]
public virtual int? Max { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Min

The age range's lower bound, if any. Possible values include, but are not limited to, the following: - "21" - for age 21 - "18" - for age 18

Declaration
[JsonProperty("min")]
public virtual int? Min { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
Back to top