| 157 | |
| 158 | |
| 159 | class String(Instance): |
| 160 | name = "string" |
| 161 | types = (str,) |
| 162 | ramlType = "string" |
| 163 | graphQLType = "String" |
| 164 | |
| 165 | def valueFromString(self, arg): |
| 166 | val = util.bytes2unicode(arg) |
| 167 | return val |
| 168 | |
| 169 | |
| 170 | class Binary(Instance): |
no outgoing calls