UpdateSecurityExitFee
Signature
mutation {
UpdateSecurityExitFee(securityFeeId: ..., localizedName: ..., feeAtePercentage: ..., feeVatPercentage: ...)
}
Retourne : SecurityFeeExit
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
securityFeeId | ID! | ✓ | — | — |
localizedName | [LocalizedStringInput]! | ✓ | — | — |
feeAtePercentage | Float! | ✓ | — | — |
feeVatPercentage | Float! | ✓ | — | — |
Exemple
mutation {
UpdateSecurityExitFee(
securityFeeId: $securityFeeId
localizedName: $localizedName
feeAtePercentage: $feeAtePercentage
feeVatPercentage: $feeVatPercentage
) {
# Sélectionner les champs souhaités
}
}