I would like to create a class or struct for this message, but I don't know what the following means:
body:,from:,to:,
I know what they are doing on a high-level, but don't know what these words are for or how they would fit into a class.
TwilioClient.Init(accountSid, authToken);
var message = MessageResource.Create(
body: "Join Earth's mightiest heroes. Like Kevin Bacon.",
from: new Twillio.Types.PhoneNumber("+1501712261"),
to: new Twillio.Types.PhoneNumber("+1501712261")
)