summaryrefslogtreecommitdiff
path: root/lib/WebService/TFL/TubeStatus/Response/Line.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/WebService/TFL/TubeStatus/Response/Line.pm')
-rw-r--r--lib/WebService/TFL/TubeStatus/Response/Line.pm36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/WebService/TFL/TubeStatus/Response/Line.pm b/lib/WebService/TFL/TubeStatus/Response/Line.pm
new file mode 100644
index 0000000..11d3538
--- /dev/null
+++ b/lib/WebService/TFL/TubeStatus/Response/Line.pm
@@ -0,0 +1,36 @@
+package WebService::TFL::TubeStatus::Response::Line;
+use Moose;
+use WebService::TFL::TubeStatus::Response::LineStatus;
+use namespace::autoclean;
+
+has id => (
+ is => 'ro',
+ isa => 'Num',
+ required => 1,
+);
+
+has name => (
+ is => 'ro',
+ isa => 'Str',
+ required => 1,
+);
+
+has status => (
+ is => 'ro',
+ isa => 'WebService::TFL::TubeStatus::Response::LineStatus',
+ required => 1,
+);
+
+sub new_from_xml {
+ my ($class,$line,$status,$xpath) = @_;
+
+ my %init_arg;
+
+ $init_arg{id} = $line->findvalue(q{@ID});
+ $init_arg{name} = $line->findvalue(q{@Name});
+ $init_arg{status} = WebService::TFL::TubeStatus::Response::LineStatus->new_from_xml($status,$xpath);
+
+ return $class->new(\%init_arg);
+}
+
+1;