File: /var/www/api.javaapp.co.uk/node_modules/stripe/types/Billing/CreditGrants.d.ts
// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Billing {
/**
* A credit grant is a resource that records a grant of some credit to a customer.
*/
interface CreditGrant {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'billing.credit_grant';
amount: CreditGrant.Amount;
applicability_config: CreditGrant.ApplicabilityConfig;
/**
* The category of this credit grant.
*/
category: CreditGrant.Category;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Id of the customer to whom the credit was granted.
*/
customer: string | Stripe.Customer | Stripe.DeletedCustomer;
/**
* The time when the credit becomes effective i.e when it is eligible to be used.
*/
effective_at: number | null;
/**
* The time when the credit will expire. If not present, the credit will never expire.
*/
expires_at: number | null;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
*/
metadata: Stripe.Metadata;
/**
* A descriptive name shown in dashboard and on invoices.
*/
name: string | null;
/**
* ID of the test clock this credit grant belongs to.
*/
test_clock: string | Stripe.TestHelpers.TestClock | null;
/**
* Time at which the object was last updated. Measured in seconds since the Unix epoch.
*/
updated: number;
/**
* The time when this credit grant was voided. If not present, the credit grant hasn't been voided.
*/
voided_at: number | null;
}
namespace CreditGrant {
interface Amount {
/**
* The monetary amount.
*/
monetary: Amount.Monetary | null;
/**
* The type of this amount. We currently only support `monetary` credits.
*/
type: 'monetary';
}
namespace Amount {
interface Monetary {
/**
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
*/
currency: string;
/**
* A positive integer representing the amount.
*/
value: number;
}
}
interface ApplicabilityConfig {
scope: ApplicabilityConfig.Scope;
}
namespace ApplicabilityConfig {
interface Scope {
/**
* The price type to which credit grants can apply to. We currently only support `metered` price type.
*/
price_type: 'metered';
}
}
type Category = 'paid' | 'promotional';
}
}
}
}