import type { AgreementType } from '../schemas/AgreementType'; /** * Details of an Agreement to be Signed */ export interface EulaSignRequest { /** * Type of Agreement */ agreement_type: AgreementType; }