Module Response.Account_update

module Account_update: sig .. end

type t = private {
   key : string;
   value : string;
   currency : string option;
   account_code : Account_code.t;
}
val account_code : t -> Account_code.t
val currency : t -> string option
val value : t -> string
val key : t -> string
module Fields: sig .. end
include Response_intf.S
val create : key:string ->
value:string ->
currency:string option ->
account_code:Account_code.t -> t
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t