File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def _alias_generator(name: str) -> str:
33
33
34
34
class Banner (BaseModel ):
35
35
"""
36
- a search banner with image and url .
36
+ Banner with image and link to redirect users .
37
37
"""
38
38
39
39
image : Optional [BannerImage ] = None
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def _alias_generator(name: str) -> str:
32
32
33
33
class BannerImage (BaseModel ):
34
34
"""
35
- image of a search banner.
35
+ Image to show inside a banner.
36
36
"""
37
37
38
38
urls : Optional [List [BannerImageUrl ]] = None
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def _alias_generator(name: str) -> str:
29
29
30
30
class BannerImageUrl (BaseModel ):
31
31
"""
32
- url for a search banner image .
32
+ URL for an image to show inside a banner .
33
33
"""
34
34
35
35
url : Optional [str ] = None
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def _alias_generator(name: str) -> str:
29
29
30
30
class BannerLink (BaseModel ):
31
31
"""
32
- link for a banner defined in merchandising studio .
32
+ Link for a banner defined in the Merchandising Studio .
33
33
"""
34
34
35
35
url : Optional [str ] = None
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ def _alias_generator(name: str) -> str:
31
31
32
32
class Widgets (BaseModel ):
33
33
"""
34
- widgets returned from any rules that are applied to the current search.
34
+ Widgets returned from any rules that are applied to the current search.
35
35
"""
36
36
37
37
banners : Optional [List [Banner ]] = None
38
- """ banners defined in the merchandising studio for the given search. """
38
+ """ Banners defined in the Merchandising Studio for a given search. """
39
39
40
40
model_config = ConfigDict (
41
41
strict = False ,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def _alias_generator(name: str) -> str:
33
33
34
34
class Banner (BaseModel ):
35
35
"""
36
- a search banner with image and url .
36
+ Banner with image and link to redirect users .
37
37
"""
38
38
39
39
image : Optional [BannerImage ] = None
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def _alias_generator(name: str) -> str:
32
32
33
33
class BannerImage (BaseModel ):
34
34
"""
35
- image of a search banner.
35
+ Image to show inside a banner.
36
36
"""
37
37
38
38
urls : Optional [List [BannerImageUrl ]] = None
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def _alias_generator(name: str) -> str:
29
29
30
30
class BannerImageUrl (BaseModel ):
31
31
"""
32
- url for a search banner image .
32
+ URL for an image to show inside a banner .
33
33
"""
34
34
35
35
url : Optional [str ] = None
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def _alias_generator(name: str) -> str:
29
29
30
30
class BannerLink (BaseModel ):
31
31
"""
32
- link for a banner defined in merchandising studio .
32
+ Link for a banner defined in the Merchandising Studio .
33
33
"""
34
34
35
35
url : Optional [str ] = None
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ def _alias_generator(name: str) -> str:
31
31
32
32
class Widgets (BaseModel ):
33
33
"""
34
- widgets returned from any rules that are applied to the current search.
34
+ Widgets returned from any rules that are applied to the current search.
35
35
"""
36
36
37
37
banners : Optional [List [Banner ]] = None
38
- """ banners defined in the merchandising studio for the given search. """
38
+ """ Banners defined in the Merchandising Studio for a given search. """
39
39
40
40
model_config = ConfigDict (
41
41
strict = False ,
You can’t perform that action at this time.
0 commit comments