Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Bandwidth.Iris.Tests/Models/PortInTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public void UpdateTest()
{
var data = new LnpOrderSupp
{
RequestedFocDate = DateTime.Parse("2014-11-18T00:00:00.000Z"),
RequestedFocDate = new DateTimeOffset(DateTime.Parse("2014-11-18T00:00:00.000Z")),
WirelessInfo = new[]{new WirelessInfo
{
AccountNumber = "77129766500001",
Expand Down Expand Up @@ -484,7 +484,7 @@ public void GetPortInTest()
Assert.Equal("CANCELLED", r.ProcessingStatus);
Assert.Equal(DateTime.Parse("2014-08-04T13:37:06.323"), r.OrderCreateDate);
Assert.Equal(DateTime.Parse("2014-08-04T13:37:08.676"), r.LastModifiedDate);
Assert.Equal(DateTime.Parse("2014-08-04T13:37:08.676"), r.RequestedFocDate);
Assert.Equal(DateTime.SpecifyKind(DateTime.Parse("2014-08-04T13:37:08.676"), DateTimeKind.Utc), r.RequestedFocDate);
Assert.Equal("The Authguy", r.LoaAuthorizingPerson);
Assert.Equal("9195551234", r.BillingTelephoneNumber);
Assert.Equal("9175131245", r.NewBillingTelephoneNumber);
Expand Down Expand Up @@ -531,7 +531,7 @@ public void LnpOrderResponseTest()
Assert.Equal("CANCELLED", lnpOrderResponse.ProcessingStatus);
Assert.Equal(DateTime.Parse("2014-08-04T13:37:06.323"), lnpOrderResponse.OrderCreateDate);
Assert.Equal(DateTime.Parse("2014-08-04T13:37:08.676"), lnpOrderResponse.LastModifiedDate);
Assert.Equal(DateTime.Parse("2014-08-04T13:37:08.676"), lnpOrderResponse.RequestedFocDate);
Assert.Equal(DateTime.SpecifyKind(DateTime.Parse("2014-08-04T13:37:08.676"), DateTimeKind.Utc), lnpOrderResponse.RequestedFocDate);
Assert.Equal("The Authguy", lnpOrderResponse.LoaAuthorizingPerson);
Assert.Equal("9195551234", lnpOrderResponse.BillingTelephoneNumber);
Assert.Equal("9175131245", lnpOrderResponse.NewBillingTelephoneNumber);
Expand Down Expand Up @@ -620,7 +620,7 @@ public void GetPortInsTest()
Assert.Equal("Port out successful.", r.lnpPortInfoForGivenStatuses[0].ErrorMessage);
Assert.Equal("9727717577", r.lnpPortInfoForGivenStatuses[0].FullNumber);
Assert.Equal("COMPLETE", r.lnpPortInfoForGivenStatuses[0].ProcessingStatus);
Assert.Equal(DateTime.Parse("2014-11-20T00:00:00.000"), r.lnpPortInfoForGivenStatuses[0].RequestedFOCDate);
Assert.Equal(DateTime.SpecifyKind(DateTime.Parse("2014-11-20T00:00:00.000"), DateTimeKind.Utc), r.lnpPortInfoForGivenStatuses[0].RequestedFOCDate);
Assert.Equal("512E", r.lnpPortInfoForGivenStatuses[0].VendorId);


Expand Down
4 changes: 2 additions & 2 deletions Bandwidth.Iris/Model/PortIn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
}

public string CustomerOrderId { get; set; }
public DateTime RequestedFocDate { get; set; }
public DateTimeOffset RequestedFocDate { get; set; }
public string AlternateSpid { get; set; }
public string AccountNumber { get; set; }
public string PinNumber { get; set; }
Expand Down Expand Up @@ -236,24 +236,24 @@

public class LnpOrderResponse : PortIn
{
public string OrderId { get; set; }

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.

Check warning on line 239 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.OrderId' hides inherited member 'PortIn.OrderId'. Use the new keyword if hiding was intended.
public string ProcessingStatus { get; set; }
public string CustomerOrderId { get; set; }

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.

Check warning on line 241 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.CustomerOrderId' hides inherited member 'PortIn.CustomerOrderId'. Use the new keyword if hiding was intended.
public Status Status { get; set; }
public string LoaAuthorizingPerson { get; set; }

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.

Check warning on line 243 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.LoaAuthorizingPerson' hides inherited member 'PortIn.LoaAuthorizingPerson'. Use the new keyword if hiding was intended.
public Subscriber Subscriber { get; set; }

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.

Check warning on line 244 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.Subscriber' hides inherited member 'PortIn.Subscriber'. Use the new keyword if hiding was intended.
public string BillingType { get; set; }
[XmlElement("WirelessInfo")]
public WirelessInfo[] WirelessInfo { get; set; }
[XmlArrayItem("TnAttribute")]
public string[] TnAttributes { get; set; }

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.

Check warning on line 249 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.TnAttributes' hides inherited member 'PortIn.TnAttributes'. Use the new keyword if hiding was intended.
public string BillingTelephoneNumber { get; set; }

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 250 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.BillingTelephoneNumber' hides inherited member 'PortIn.BillingTelephoneNumber'. Use the new keyword if hiding was intended.
public string NewBillingTelephoneNumber { get; set; }

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.

Check warning on line 251 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.NewBillingTelephoneNumber' hides inherited member 'PortIn.NewBillingTelephoneNumber'. Use the new keyword if hiding was intended.
[XmlArrayItem("PhoneNumber")]
public string[] ListOfPhoneNumbers { get; set; }

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.

Check warning on line 253 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.ListOfPhoneNumbers' hides inherited member 'PortIn.ListOfPhoneNumbers'. Use the new keyword if hiding was intended.
public string AlternateSpid { get; set; }

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.

Check warning on line 254 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.AlternateSpid' hides inherited member 'PortIn.AlternateSpid'. Use the new keyword if hiding was intended.
public string AccountId { get; set; }
public string SiteId { get; set; }

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 6.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-24.04, 7.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 6.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 7.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 6.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 7.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2022, 6.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.

Check warning on line 256 in Bandwidth.Iris/Model/PortIn.cs

View workflow job for this annotation

GitHub Actions / Test (windows-2019, 7.0.x)

'LnpOrderResponse.SiteId' hides inherited member 'PortIn.SiteId'. Use the new keyword if hiding was intended.
public string PeerId { get; set; }
public string VendorName { get; set; }
public DateTime OrderCreateDate { get; set; }
Expand All @@ -275,7 +275,7 @@
public string CustomerOrderId { get; set; }
public string BillingTelephoneNumber { get; set; }
public string NewBillingTelephoneNumber { get; set; }
public DateTime RequestedFocDate { get; set; }
public DateTimeOffset RequestedFocDate { get; set; }
[XmlElement("WirelessInfo")]
public WirelessInfo[] WirelessInfo { get; set; }
[XmlArrayItem("TnAttribute")]
Expand Down