Reaction::Meta::InterfaceModel::Object::ParameterAttribute - Reaction::Meta::InterfaceModel::Object::ParameterAttribute documentation


Reaction documentation Contained in the Reaction distribution.

Index


Code Index:

NAME

Top

Reaction::Meta::InterfaceModel::Object::ParameterAttribute

DESCRIPTION

Top

ATTRIBUTES

Top

domain_model

orig_attr_name

AUTHORS

Top

See Reaction::Class for authors.

LICENSE

Top

See Reaction::Class for the license.


Reaction documentation Contained in the Reaction distribution.

package Reaction::Meta::InterfaceModel::Object::ParameterAttribute;

use Reaction::Class;

use namespace::clean -except => [ qw(meta) ];
extends 'Reaction::Meta::Attribute';


has domain_model => (
  isa => 'Str',
  is => 'ro',
  predicate => 'has_domain_model'
);

has orig_attr_name => (
  isa => 'Str',
  is => 'ro',
  predicate => 'has_orig_attr_name'
);

__PACKAGE__->meta->make_immutable(inline_constructor => 0);

1;