Notes
Apex is a case-insensitive language when it comes to the names of variables, methods, and classes. This means that the capitalization of letters in these names does not affect their interpretation or usage.
For example, the following variable declarations are considered equivalent:
String myText = 'Hello, Case-Insensitive!';
String mytext = 'Hello, Case-Insensitive!';
Video
Video does not exists.