
input CreateOrUpdateESTaxDetailsInput {
    accountId: ID!
    address: PayeeAddressInput
    businessName: String
    certificateOfResidenceExpirationDate: String
    countryOfTaxResidence: String
    isResidentOfSpanishIslands: Boolean
    isVatRegistered: Boolean
    isWhtApplicable: Boolean
    localTaxId: String
    taxEmploymentType: String
}

extend type Mutation {
     createOrUpdateESTaxDetails(
         input: CreateOrUpdateESTaxDetailsInput!
     ): SuccessResponse!
}
