type token_id_type is nat
type operator_type is [@layout:comb] record [
owner : address;
operator : address;
token_id : token_id_type;
]
type upd_operator_type is
| Add_operator of operator_type
| Remove_operator of operator_type
type update_ops_type is list(upd_operator_type)