You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
4.9 KiB
155 lines
4.9 KiB
4 years ago
|
/*
|
||
|
* Service Collaborateur API
|
||
|
*
|
||
|
* Api du service Collaborateur, utilisée pour récupérer les données des collaborateurs d'Apside
|
||
|
*
|
||
4 years ago
|
* OpenAPI spec version: 1.1.3
|
||
4 years ago
|
* 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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// BU
|
||
|
/// </summary>
|
||
|
[DataContract]
|
||
|
public partial class BU : IEquatable<BU>, IValidatableObject
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="BU" /> class.
|
||
|
/// </summary>
|
||
|
/// <param name="id">id.</param>
|
||
|
/// <param name="nom">nom.</param>
|
||
|
/// <param name="agence">agence.</param>
|
||
|
public BU(long? id = default(long?), string nom = default(string), Agence agence = default(Agence))
|
||
|
{
|
||
|
this.Id = id;
|
||
|
this.Nom = nom;
|
||
|
this.Agence = agence;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or Sets Id
|
||
|
/// </summary>
|
||
|
[DataMember(Name="id", EmitDefaultValue=false)]
|
||
|
public long? Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or Sets Nom
|
||
|
/// </summary>
|
||
|
[DataMember(Name="nom", EmitDefaultValue=false)]
|
||
|
public string Nom { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or Sets Agence
|
||
|
/// </summary>
|
||
|
[DataMember(Name="agence", EmitDefaultValue=false)]
|
||
|
public Agence Agence { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns the string presentation of the object
|
||
|
/// </summary>
|
||
|
/// <returns>String presentation of the object</returns>
|
||
|
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();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns the JSON string presentation of the object
|
||
|
/// </summary>
|
||
|
/// <returns>JSON string presentation of the object</returns>
|
||
|
public virtual string ToJson()
|
||
|
{
|
||
|
return JsonConvert.SerializeObject(this, Formatting.Indented);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns true if objects are equal
|
||
|
/// </summary>
|
||
|
/// <param name="input">Object to be compared</param>
|
||
|
/// <returns>Boolean</returns>
|
||
|
public override bool Equals(object input)
|
||
|
{
|
||
|
return this.Equals(input as BU);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Returns true if BU instances are equal
|
||
|
/// </summary>
|
||
|
/// <param name="input">Instance of BU to be compared</param>
|
||
|
/// <returns>Boolean</returns>
|
||
|
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))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the hash code
|
||
|
/// </summary>
|
||
|
/// <returns>Hash code</returns>
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// To validate all properties of the instance
|
||
|
/// </summary>
|
||
|
/// <param name="validationContext">Validation context</param>
|
||
|
/// <returns>Validation Result</returns>
|
||
|
IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
|
||
|
{
|
||
|
yield break;
|
||
|
}
|
||
|
}
|
||
|
}
|