24 lines
486 B
TypeScript
24 lines
486 B
TypeScript
|
|
export type ActionData = {
|
|
correlation_id?: string;
|
|
dueDate: string, // isodate
|
|
filter?: {} // no se si hace falta
|
|
identifier: {
|
|
identifiers: string
|
|
identifierType: "IMSI" | "MSISDN" | "REFERENCE" | "ICCID" | "IMEI"
|
|
}
|
|
}
|
|
|
|
export type ActivationData = ActionData & {
|
|
customerAccountCode: "9.49411.10" | string,
|
|
offer: {
|
|
code: string | "SAVEFAMILY1" | "SAVEFAMILY2",
|
|
services: any[]
|
|
}
|
|
}
|
|
|
|
export type ResponseError = {
|
|
error: string,
|
|
detail: Object[]
|
|
}
|