/*
* Service Collaborateur API
*
* Api du service Collaborateur, utilisée pour récupérer les données des collaborateurs d'Apside
*
* OpenAPI spec version: 1.1.3
* Contact: lilian.gayet@apside-groupe.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System;
using System.Linq;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.ComponentModel.DataAnnotations;
using SwaggerDateConverter = IO.Swagger.ClientCollaborateur.SwaggerDateConverter;
namespace IO.Swagger.ModelCollaborateur
{
///
/// BU
///
[DataContract]
public partial class BU : IEquatable, IValidatableObject
{
///
/// Initializes a new instance of the class.
///
/// id.
/// nom.
/// agence.
public BU(long? id = default(long?), string nom = default(string), Agence agence = default(Agence))
{
this.Id = id;
this.Nom = nom;
this.Agence = agence;
}
///
/// Gets or Sets Id
///
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; set; }
///
/// Gets or Sets Nom
///
[DataMember(Name="nom", EmitDefaultValue=false)]
public string Nom { get; set; }
///
/// Gets or Sets Agence
///
[DataMember(Name="agence", EmitDefaultValue=false)]
public Agence Agence { get; set; }
///
/// Returns the string presentation of the object
///
/// String presentation of the object
public override string ToString()
{
var sb = new StringBuilder();
sb.Append("class BU {\n");
sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" Nom: ").Append(Nom).Append("\n");
sb.Append(" Agence: ").Append(Agence).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
///
/// Returns the JSON string presentation of the object
///
/// JSON string presentation of the object
public virtual string ToJson()
{
return JsonConvert.SerializeObject(this, Formatting.Indented);
}
///
/// Returns true if objects are equal
///
/// Object to be compared
/// Boolean
public override bool Equals(object input)
{
return this.Equals(input as BU);
}
///
/// Returns true if BU instances are equal
///
/// Instance of BU to be compared
/// Boolean
public bool Equals(BU input)
{
if (input == null)
return false;
return
(
this.Id == input.Id ||
(this.Id != null &&
this.Id.Equals(input.Id))
) &&
(
this.Nom == input.Nom ||
(this.Nom != null &&
this.Nom.Equals(input.Nom))
) &&
(
this.Agence == input.Agence ||
(this.Agence != null &&
this.Agence.Equals(input.Agence))
);
}
///
/// Gets the hash code
///
/// Hash code
public override int GetHashCode()
{
unchecked // Overflow is fine, just wrap
{
int hashCode = 41;
if (this.Id != null)
hashCode = hashCode * 59 + this.Id.GetHashCode();
if (this.Nom != null)
hashCode = hashCode * 59 + this.Nom.GetHashCode();
if (this.Agence != null)
hashCode = hashCode * 59 + this.Agence.GetHashCode();
return hashCode;
}
}
///
/// To validate all properties of the instance
///
/// Validation context
/// Validation Result
IEnumerable IValidatableObject.Validate(ValidationContext validationContext)
{
yield break;
}
}
}