From c60003561dac0d70048b15eb70a81462d67bbc94 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 9 Oct 2019 18:10:14 -0700 Subject: [PATCH] Add `DeviceType` filter when listing Terminal `Reader`s --- .../Services/Terminal/Readers/ReaderListOptions.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Stripe.net/Services/Terminal/Readers/ReaderListOptions.cs b/src/Stripe.net/Services/Terminal/Readers/ReaderListOptions.cs index 7137f43f53..1a6b5e8119 100644 --- a/src/Stripe.net/Services/Terminal/Readers/ReaderListOptions.cs +++ b/src/Stripe.net/Services/Terminal/Readers/ReaderListOptions.cs @@ -5,6 +5,12 @@ namespace Stripe.Terminal public class ReaderListOptions : ListOptions { + /// + /// Filters readers by device type. + /// + [JsonProperty("device_type")] + public string DeviceType { get; set; } + /// /// A location ID to filter the response list to only readers at the specific location. ///