mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-06-03 01:10:09 +00:00
chore(APIEntitlement): update ends_at and starts_at to be nullable (#1158)
This commit is contained in:
@@ -33,13 +33,13 @@ export interface APIEntitlement {
|
||||
*/
|
||||
deleted: boolean;
|
||||
/**
|
||||
* Start date at which the entitlement is valid. Not present when using test entitlements.
|
||||
* Start date at which the entitlement is valid.
|
||||
*/
|
||||
starts_at?: string;
|
||||
starts_at: string | null;
|
||||
/**
|
||||
* Date at which the entitlement is no longer valid. Not present when using test entitlements.
|
||||
* Date at which the entitlement is no longer valid.
|
||||
*/
|
||||
ends_at?: string;
|
||||
ends_at: string | null;
|
||||
/**
|
||||
* For consumable items, whether or not the entitlement has been consumed
|
||||
*/
|
||||
|
||||
@@ -33,13 +33,13 @@ export interface APIEntitlement {
|
||||
*/
|
||||
deleted: boolean;
|
||||
/**
|
||||
* Start date at which the entitlement is valid. Not present when using test entitlements.
|
||||
* Start date at which the entitlement is valid.
|
||||
*/
|
||||
starts_at?: string;
|
||||
starts_at: string | null;
|
||||
/**
|
||||
* Date at which the entitlement is no longer valid. Not present when using test entitlements.
|
||||
* Date at which the entitlement is no longer valid.
|
||||
*/
|
||||
ends_at?: string;
|
||||
ends_at: string | null;
|
||||
/**
|
||||
* For consumable items, whether or not the entitlement has been consumed
|
||||
*/
|
||||
|
||||
@@ -33,13 +33,13 @@ export interface APIEntitlement {
|
||||
*/
|
||||
deleted: boolean;
|
||||
/**
|
||||
* Start date at which the entitlement is valid. Not present when using test entitlements.
|
||||
* Start date at which the entitlement is valid.
|
||||
*/
|
||||
starts_at?: string;
|
||||
starts_at: string | null;
|
||||
/**
|
||||
* Date at which the entitlement is no longer valid. Not present when using test entitlements.
|
||||
* Date at which the entitlement is no longer valid.
|
||||
*/
|
||||
ends_at?: string;
|
||||
ends_at: string | null;
|
||||
/**
|
||||
* For consumable items, whether or not the entitlement has been consumed
|
||||
*/
|
||||
|
||||
@@ -33,13 +33,13 @@ export interface APIEntitlement {
|
||||
*/
|
||||
deleted: boolean;
|
||||
/**
|
||||
* Start date at which the entitlement is valid. Not present when using test entitlements.
|
||||
* Start date at which the entitlement is valid.
|
||||
*/
|
||||
starts_at?: string;
|
||||
starts_at: string | null;
|
||||
/**
|
||||
* Date at which the entitlement is no longer valid. Not present when using test entitlements.
|
||||
* Date at which the entitlement is no longer valid.
|
||||
*/
|
||||
ends_at?: string;
|
||||
ends_at: string | null;
|
||||
/**
|
||||
* For consumable items, whether or not the entitlement has been consumed
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user