stripe: Add type option to IProductListOptions (#33900)

* stripe: Add type option to IProductListOptions

https://stripe.com/docs/api/service_products/list?lang=node#list_service_products-type

* Add created property
This commit is contained in:
Raúl Acuña
2019-03-15 14:52:40 -03:00
committed by Wesley Wigham
parent 3426c72488
commit 187caaea1d

View File

@@ -3901,6 +3901,17 @@ declare namespace Stripe {
* Only return products with the given url
*/
url?: string;
/**
* Only return products of this type
*/
type?: string;
/**
* A filter on the list based on the object created field. The value can be a string with an integer Unix timestamp,
* or it can be a dictionary with the following options:
*/
created?: IDateFilter;
}
/**