Files
sf-sim/packages/sim-consumidor-objenious/domain/DTOs/objeniousapi.ts

24 lines
488 B
TypeScript
Raw Normal View History

export type ActionData = {
correlation_id?: string;
dueDate: string, // isodate
filter?: {} // no se si hace falta
identifier: {
2026-02-27 11:16:45 +01:00
identifiers: string[]
identifierType: "IMSI" | "MSISDN" | "REFERENCE" | "ICCID" | "IMEI"
}
}
export type ActivationData = ActionData & {
2026-03-06 11:06:15 +01:00
customerAccountCode: "9.49411.10" | string,
offer: {
code: string | "SAVEFAMILY1" | "SAVEFAMILY2",
services: any[]
}
}
export type ResponseError = {
error: string,
detail: Object[]
}