ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
25 lines (24 loc) • 670 B
TypeScript
import { OptionsSecurity } from "..";
type FulfilmentInfo = {
fulfilment_config_id: number;
fulfilment_reason: number;
fulfilment_notes: string;
fulfilment_type: number;
extra_embossing: string;
extra_identifier: string;
fourth_line_embossing: string;
status: number;
status_date: string;
batch_id: number;
name_on_card_first: string;
name_on_card_last: string;
linked_supplied_id: number;
entity: number;
entity_id: number;
shipping_method: string;
requires_activation: boolean;
is_additional: boolean;
security: OptionsSecurity;
priority_order: number;
};
export type { FulfilmentInfo };