lib/openactive/models/schema/postal_address.rb in openactive-0.2.2 vs lib/openactive/models/schema/postal_address.rb in openactive-0.3.0
- old
+ new
@@ -6,38 +6,38 @@
# @return [String]
def type
"schema:PostalAddress"
end
- # @return [String]
- define_property :address_locality, as: "addressLocality", types: [
+ # @return [OpenActive::Models::Schema::Country,String,URI]
+ define_property :address_country, as: "addressCountry", types: [
+ "OpenActive::Models::Schema::Country",
"string",
+ "URI",
]
- # @return [String,OpenActive::Models::Schema::Country,URI]
- define_property :address_country, as: "addressCountry", types: [
+ # @return [String]
+ define_property :address_region, as: "addressRegion", types: [
"string",
- "OpenActive::Models::Schema::Country",
- "URI",
]
# @return [String]
- define_property :post_office_box_number, as: "postOfficeBoxNumber", types: [
+ define_property :address_locality, as: "addressLocality", types: [
"string",
]
# @return [String]
- define_property :street_address, as: "streetAddress", types: [
+ define_property :postal_code, as: "postalCode", types: [
"string",
]
# @return [String]
- define_property :address_region, as: "addressRegion", types: [
+ define_property :post_office_box_number, as: "postOfficeBoxNumber", types: [
"string",
]
# @return [String]
- define_property :postal_code, as: "postalCode", types: [
+ define_property :street_address, as: "streetAddress", types: [
"string",
]
end
end
end