@@ -25,7 +25,7 @@ class PaymentLocationCapability(
2525 UpdateableAPIResource ["PaymentLocationCapability" ],
2626):
2727 """
28- A Payment Location Capability represents a capability for a Stripe account at a Payment Location .
28+ A `payment_location` capability represents a capability for a Stripe account at a payment location .
2929 """
3030
3131 OBJECT_NAME : ClassVar [Literal ["payment_location_capability" ]] = (
@@ -72,7 +72,7 @@ class Error(StripeObject):
7272
7373 account : str
7474 """
75- The account for which the capability enables functionality.
75+ The account that the capability enables functionality for .
7676 """
7777 capability : Literal ["fr_meal_vouchers_conecs_payments" ]
7878 """
@@ -84,7 +84,7 @@ class Error(StripeObject):
8484 """
8585 location : str
8686 """
87- The payment location for which the capability enables functionality.
87+ The payment location that the capability enables functionality for .
8888 """
8989 object : Literal ["payment_location_capability" ]
9090 """
@@ -96,7 +96,7 @@ class Error(StripeObject):
9696 """
9797 requested_at : Optional [int ]
9898 """
99- Time at which the capability was requested. Measured in seconds since the Unix epoch.
99+ Time when the capability was requested. Measured in seconds since the Unix epoch.
100100 """
101101 requirements : Requirements
102102 status : Literal ["active" , "inactive" , "pending" , "unrequested" ]
@@ -109,7 +109,7 @@ def list(
109109 cls , ** params : Unpack ["PaymentLocationCapabilityListParams" ]
110110 ) -> ListObject ["PaymentLocationCapability" ]:
111111 """
112- Returns a list of PaymentLocationCapability objects associated with the location.
112+ List all payment location capabilities associated with the payment location.
113113 """
114114 result = cls ._static_request (
115115 "get" ,
@@ -129,7 +129,7 @@ async def list_async(
129129 cls , ** params : Unpack ["PaymentLocationCapabilityListParams" ]
130130 ) -> ListObject ["PaymentLocationCapability" ]:
131131 """
132- Returns a list of PaymentLocationCapability objects associated with the location.
132+ List all payment location capabilities associated with the payment location.
133133 """
134134 result = await cls ._static_request_async (
135135 "get" ,
@@ -149,7 +149,7 @@ def modify(
149149 cls , id : str , ** params : Unpack ["PaymentLocationCapabilityModifyParams" ]
150150 ) -> "PaymentLocationCapability" :
151151 """
152- Updates a specified Payment Location Capability . Request or remove a payment location capability by updating its requested parameter.
152+ Updates a payment_location capability . Request or remove a payment_location capability by updating its requested parameter.
153153 """
154154 url = "%s/%s" % (cls .class_url (), sanitize_id (id ))
155155 return cast (
@@ -166,7 +166,7 @@ async def modify_async(
166166 cls , id : str , ** params : Unpack ["PaymentLocationCapabilityModifyParams" ]
167167 ) -> "PaymentLocationCapability" :
168168 """
169- Updates a specified Payment Location Capability . Request or remove a payment location capability by updating its requested parameter.
169+ Updates a payment_location capability . Request or remove a payment_location capability by updating its requested parameter.
170170 """
171171 url = "%s/%s" % (cls .class_url (), sanitize_id (id ))
172172 return cast (
@@ -185,7 +185,7 @@ def retrieve(
185185 ** params : Unpack ["PaymentLocationCapabilityRetrieveParams" ],
186186 ) -> "PaymentLocationCapability" :
187187 """
188- Retrieves information about the specified Payment Location Capability.
188+ Retrieves a payment_location capability
189189 """
190190 instance = cls (id , ** params )
191191 instance .refresh ()
@@ -198,7 +198,7 @@ async def retrieve_async(
198198 ** params : Unpack ["PaymentLocationCapabilityRetrieveParams" ],
199199 ) -> "PaymentLocationCapability" :
200200 """
201- Retrieves information about the specified Payment Location Capability.
201+ Retrieves a payment_location capability
202202 """
203203 instance = cls (id , ** params )
204204 await instance .refresh_async ()
0 commit comments