solution = [ ]; } /** * Constructs a SchemaContext * * @param string $id The unique identifier of the schema. Each schema can have multiple versions, that share the same id. */ public function getContext( string $id ): SchemaContext { return new SchemaContext( $this->version, $id ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Events.V1.SchemaList]'; } }