An enumeration does exist: [`BillingRequestStatus`](https://github.com/gocardless/gocardless-dotnet/blob/v9.2.2/GoCardless/Resources/BillingRequest.cs#L1666) but the BRQ entities that have a `Status` property define it as a `string`, not that enum: * [`BillingRequest.Status`](https://github.com/gocardless/gocardless-dotnet/blob/v9.2.2/GoCardless/Resources/BillingRequest.cs#L130) * [`BillingRequestWithAction.Status`](https://github.com/gocardless/gocardless-dotnet/blob/v9.2.2/GoCardless/Resources/BillingRequestWithAction.cs#L396) * [`BillingRequestListRequest.Status`](https://github.com/gocardless/gocardless-dotnet/blob/v9.2.2/GoCardless/Services/BillingRequestService.cs#L1862) Other entities are defined correctly e.g. [`Mandate`](https://github.com/gocardless/gocardless-dotnet/blob/v9.2.2/GoCardless/Resources/Mandate.cs#L161) has [`MandateStatus`](https://github.com/gocardless/gocardless-dotnet/blob/v9.2.2/GoCardless/Resources/Mandate.cs#L371), please can BRQ be updated to match.