UNPKG

wallee

Version:
79 lines (78 loc) 2.98 kB
import type { CreationEntityState } from './CreationEntityState'; /** * * @export * @interface SubscriptionAffiliateDeleted */ export interface SubscriptionAffiliateDeleted { /** * The reference used to identify the affiliate. * @type {string} * @memberof SubscriptionAffiliateDeleted */ readonly reference?: string; /** * The ID of the space this object belongs to. * @type {number} * @memberof SubscriptionAffiliateDeleted */ readonly linkedSpaceId?: number; /** * Allow to store additional information about the object. * @type {{ [key: string]: string; }} * @memberof SubscriptionAffiliateDeleted */ readonly metaData?: { [key: string]: string; }; /** * The name used to identify the affiliate. * @type {string} * @memberof SubscriptionAffiliateDeleted */ readonly name?: string; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. * @type {Date} * @memberof SubscriptionAffiliateDeleted */ readonly plannedPurgeDate?: Date; /** * A client-generated nonce which uniquely identifies some action to be executed. Subsequent requests with the same external ID do not execute the action again, but return the original result. * @type {string} * @memberof SubscriptionAffiliateDeleted */ readonly externalId?: string; /** * The language that is linked to the object. * @type {string} * @memberof SubscriptionAffiliateDeleted */ readonly language?: string; /** * A unique identifier for the object. * @type {number} * @memberof SubscriptionAffiliateDeleted */ readonly id?: number; /** * * @type {CreationEntityState} * @memberof SubscriptionAffiliateDeleted */ state?: CreationEntityState; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof SubscriptionAffiliateDeleted */ readonly version?: number; } /** * Check if a given object implements the SubscriptionAffiliateDeleted interface. */ export declare function instanceOfSubscriptionAffiliateDeleted(value: object): value is SubscriptionAffiliateDeleted; export declare function SubscriptionAffiliateDeletedFromJSON(json: any): SubscriptionAffiliateDeleted; export declare function SubscriptionAffiliateDeletedFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionAffiliateDeleted; export declare function SubscriptionAffiliateDeletedToJSON(json: any): SubscriptionAffiliateDeleted; export declare function SubscriptionAffiliateDeletedToJSONTyped(value?: Omit<SubscriptionAffiliateDeleted, 'reference' | 'linkedSpaceId' | 'metaData' | 'name' | 'plannedPurgeDate' | 'externalId' | 'language' | 'id' | 'version'> | null, ignoreDiscriminator?: boolean): any;