export type EventApiProductRegistration = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; applicationDomainId: string; registrationId: string; accessRequestId: string; eventApiProductVersionId: string; planId: string; state?: EventApiProductRegistration.state; /** * The type of payload */ readonly type?: string; customAttributes?: Record; }; export declare namespace EventApiProductRegistration { enum state { PENDING_APPROVAL = "Pending Approval", REJECTED = "Rejected", REVOKED = "Revoked", APPROVED = "Approved", ERROR = "Error", LIVE = "Live" } }