/// <summary>
 /// Initializes a new instance of the Customer class.
 /// </summary>
 public Customer(string url = default(string), long? workRequestId = default(long?), Address address = default(Address), Phones phones = default(Phones), string name = default(string), string customerType = default(string), string ssn = default(string), string effectiveMoveInDate = default(string), string dogCode = default(string), string customerId = default(string), string premiseId = default(string))
 {
     Url = url;
     WorkRequestId = workRequestId;
     Address = address;
     Phones = phones;
     Name = name;
     CustomerType = customerType;
     Ssn = ssn;
     EffectiveMoveInDate = effectiveMoveInDate;
     DogCode = dogCode;
     CustomerId = customerId;
     PremiseId = premiseId;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the AssociatedParty class.
 /// </summary>
 public AssociatedParty(string url = default(string), long?workRequestId = default(long?), long?seq = default(long?), Address address = default(Address), Phones phones = default(Phones), string entityType = default(string))
 {
     Url           = url;
     WorkRequestId = workRequestId;
     Seq           = seq;
     Address       = address;
     Phones        = phones;
     EntityType    = entityType;
 }