factura-middle
Version:
Factura+ queries definitions
26 lines (25 loc) • 633 B
TypeScript
export declare class DeleteAgencyInput {
agencyID: string;
}
export declare class AgencyPhoneNumberInput {
e164: string;
nationalNumber: string;
countryCode: string;
}
export declare class AgencyAddressTypeInput {
country: string;
province: string;
address: string;
}
export declare class AddAgencyInput {
agencyName: string;
address: AgencyAddressTypeInput;
phone: AgencyPhoneNumberInput;
}
export declare class UpdateAgencyInput {
_id: string;
agencyName: string;
address: AgencyAddressTypeInput;
phone: AgencyPhoneNumberInput;
IDUser: string;
}