// // People.cs // // Author: // Paul Schneider // // Copyright (c) 2014 Paul Schneider // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see . namespace Yavsc.Models.Google { /// /// People. /// public class People { /// /// Gets or sets the kind. /// /// The kind. public string kind { get; set; } /// /// Gets or sets the etag. /// /// The etag. public string etag { get; set; } /// /// Gets or sets the gender. /// /// The gender. public string gender { get; set; } /// /// E mail. /// public class EMail{ /// /// Gets or sets the value. /// /// The value. public string value { get; set; } /// /// Gets or sets the type. /// /// The type. public string type { get; set; } } /// /// Gets or sets the emails. /// /// The emails. public EMail[] emails { get; set; } /// /// Gets or sets the type of the object. /// /// The type of the object. public string objectType { get; set; } /// /// Gets or sets the identifier. /// /// The identifier. public string id { get; set; } /// /// Gets or sets the display name. /// /// The display name. public string displayName { get; set; } /// /// Name. /// public class Name { /// /// Gets or sets the name of the family. /// /// The name of the family. public string familyName { get; set; } /// /// Gets or sets the name of the given. /// /// The name of the given. public string givenName { get; set; } } /// /// Gets or sets the name. /// /// The name. public Name name { get; set;} /// /// Gets or sets the URL. /// /// The URL. public string url { get; set; } /// /// Image. /// public class Image { /// /// Gets or sets the URL. /// /// The URL. public string url { get; set; } /// /// Gets or sets a value indicating whether this is default. /// /// true if is default; otherwise, false. public bool isDefault { get; set; } } /// /// Gets or sets the image. /// /// The image. public Image image { get; set; } /// /// Place. /// public class Place { /// /// Gets or sets the value. /// /// The value. public string value { get; set; } /// /// Gets or sets a value indicating whether this is primary. /// /// true if primary; otherwise, false. public bool primary { get; set; } } /// /// Gets or sets the places lived. /// /// The places lived. public Place[] placesLived { get; set; } /// /// Gets or sets a value indicating whether this is plus user. /// /// true if is plus user; otherwise, false. public bool isPlusUser { get; set; } /// /// Gets or sets the language. /// /// The language. public string language { get; set; } /// /// Gets or sets the circled by count. /// /// The circled by count. public int circledByCount { get; set; } /// /// Gets or sets a value indicating whether this is verified. /// /// true if verified; otherwise, false. public bool verified { get; set; } } }