String¶ The String type represents a Vector of Char. Usage¶ >>> from rayforce import String >>> name = String("Hello, World!") >>> name String(Hello, World!) # type: rayforce.String >>> name.value 'Hello, World!' # type: str