public string IsReadOnly(OperationModel operation)
 {
     return(operation.GetTransactionOptions()?.IsReadOnly().ToString().ToLower() ??
            (operation.GetStereotype("Http Settings")?.GetProperty <string>("Verb") == "GET" ? "true" : "false"));
 }