Set the model identifier.
(mut self, model: impl Into<String>)
| 47 | |
| 48 | /// Set the model identifier. |
| 49 | pub fn model(mut self, model: impl Into<String>) -> Self { |
| 50 | self.model = Some(model.into()); |
| 51 | self |
| 52 | } |
| 53 | |
| 54 | /// Set the model version. |
| 55 | pub fn model_version(mut self, version: impl Into<String>) -> Self { |
no outgoing calls