@@ -20,7 +20,7 @@ def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
2020
2121 @address1 = T . let ( nil , T . nilable ( String ) )
2222 @city = T . let ( nil , T . nilable ( String ) )
23- @country = T . let ( nil , T . nilable ( Country ) )
23+ @country = T . let ( nil , T . nilable ( String ) )
2424 @created_at = T . let ( nil , T . nilable ( String ) )
2525 @estimated_delivery_at = T . let ( nil , T . nilable ( String ) )
2626 @fulfillment_id = T . let ( nil , T . nilable ( Integer ) )
@@ -30,7 +30,7 @@ def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
3030 @longitude = T . let ( nil , T . nilable ( Float ) )
3131 @message = T . let ( nil , T . nilable ( String ) )
3232 @order_id = T . let ( nil , T . nilable ( Integer ) )
33- @province = T . let ( nil , T . nilable ( Province ) )
33+ @province = T . let ( nil , T . nilable ( String ) )
3434 @shop_id = T . let ( nil , T . nilable ( Integer ) )
3535 @status = T . let ( nil , T . nilable ( String ) )
3636 @updated_at = T . let ( nil , T . nilable ( String ) )
@@ -39,10 +39,7 @@ def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
3939 super ( session : session , from_hash : from_hash )
4040 end
4141
42- @has_one = T . let ( {
43- country : Country ,
44- province : Province
45- } , T ::Hash [ Symbol , Class ] )
42+ @has_one = T . let ( { } , T ::Hash [ Symbol , Class ] )
4643 @has_many = T . let ( { } , T ::Hash [ Symbol , Class ] )
4744 @paths = T . let ( [
4845 { http_method : :delete , operation : :delete , ids : [ :order_id , :fulfillment_id , :id ] , path : "orders/<order_id>/fulfillments/<fulfillment_id>/events/<id>.json" } ,
@@ -55,7 +52,7 @@ def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
5552 attr_reader :address1
5653 sig { returns ( T . nilable ( String ) ) }
5754 attr_reader :city
58- sig { returns ( T . nilable ( Country ) ) }
55+ sig { returns ( T . nilable ( String ) ) }
5956 attr_reader :country
6057 sig { returns ( T . nilable ( String ) ) }
6158 attr_reader :created_at
@@ -75,7 +72,7 @@ def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
7572 attr_reader :message
7673 sig { returns ( T . nilable ( Integer ) ) }
7774 attr_reader :order_id
78- sig { returns ( T . nilable ( Province ) ) }
75+ sig { returns ( T . nilable ( String ) ) }
7976 attr_reader :province
8077 sig { returns ( T . nilable ( Integer ) ) }
8178 attr_reader :shop_id
0 commit comments