public Keyword(CfKeyword source)
 {
     ShortCode = source.ShortCode;
     Keyword1 = source.Keyword1;
     if (source.Status.HasValue)
     {
         Status = EnumeratedMapper.ToSoapEnumerated<NumberStatus>(source.Status.ToString());
         StatusSpecified = true;
     }
     LeaseInfo = LeaseInfoMapper.ToLeaseInfo(source.LeaseInfo);
 }
 internal static Keyword ToKeyword(CfKeyword source)
 {
     return source == null ? null : new Keyword(source);
 }