-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #956 from Shopify/develop
SDK 3.3
- Loading branch information
Showing
61 changed files
with
2,254 additions
and
76 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
168 changes: 168 additions & 0 deletions
168
Buy/Generated/Storefront/AutomaticDiscountApplication.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
// | ||
// AutomaticDiscountApplication.swift | ||
// Buy | ||
// | ||
// Created by Shopify. | ||
// Copyright (c) 2017 Shopify Inc. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
import Foundation | ||
|
||
extension Storefront { | ||
/// Automatic discount applications capture the intentions of a discount that | ||
/// was automatically applied. | ||
open class AutomaticDiscountApplicationQuery: GraphQL.AbstractQuery, GraphQLQuery { | ||
public typealias Response = AutomaticDiscountApplication | ||
|
||
/// The method by which the discount's value is allocated to its entitled | ||
/// items. | ||
@discardableResult | ||
open func allocationMethod(alias: String? = nil) -> AutomaticDiscountApplicationQuery { | ||
addField(field: "allocationMethod", aliasSuffix: alias) | ||
return self | ||
} | ||
|
||
/// Which lines of targetType that the discount is allocated over. | ||
@discardableResult | ||
open func targetSelection(alias: String? = nil) -> AutomaticDiscountApplicationQuery { | ||
addField(field: "targetSelection", aliasSuffix: alias) | ||
return self | ||
} | ||
|
||
/// The type of line that the discount is applicable towards. | ||
@discardableResult | ||
open func targetType(alias: String? = nil) -> AutomaticDiscountApplicationQuery { | ||
addField(field: "targetType", aliasSuffix: alias) | ||
return self | ||
} | ||
|
||
/// The title of the application. | ||
@discardableResult | ||
open func title(alias: String? = nil) -> AutomaticDiscountApplicationQuery { | ||
addField(field: "title", aliasSuffix: alias) | ||
return self | ||
} | ||
|
||
/// The value of the discount application. | ||
@discardableResult | ||
open func value(alias: String? = nil, _ subfields: (PricingValueQuery) -> Void) -> AutomaticDiscountApplicationQuery { | ||
let subquery = PricingValueQuery() | ||
subfields(subquery) | ||
|
||
addField(field: "value", aliasSuffix: alias, subfields: subquery) | ||
return self | ||
} | ||
} | ||
|
||
/// Automatic discount applications capture the intentions of a discount that | ||
/// was automatically applied. | ||
open class AutomaticDiscountApplication: GraphQL.AbstractResponse, GraphQLObject, DiscountApplication { | ||
public typealias Query = AutomaticDiscountApplicationQuery | ||
|
||
internal override func deserializeValue(fieldName: String, value: Any) throws -> Any? { | ||
let fieldValue = value | ||
switch fieldName { | ||
case "allocationMethod": | ||
guard let value = value as? String else { | ||
throw SchemaViolationError(type: AutomaticDiscountApplication.self, field: fieldName, value: fieldValue) | ||
} | ||
return DiscountApplicationAllocationMethod(rawValue: value) ?? .unknownValue | ||
|
||
case "targetSelection": | ||
guard let value = value as? String else { | ||
throw SchemaViolationError(type: AutomaticDiscountApplication.self, field: fieldName, value: fieldValue) | ||
} | ||
return DiscountApplicationTargetSelection(rawValue: value) ?? .unknownValue | ||
|
||
case "targetType": | ||
guard let value = value as? String else { | ||
throw SchemaViolationError(type: AutomaticDiscountApplication.self, field: fieldName, value: fieldValue) | ||
} | ||
return DiscountApplicationTargetType(rawValue: value) ?? .unknownValue | ||
|
||
case "title": | ||
guard let value = value as? String else { | ||
throw SchemaViolationError(type: AutomaticDiscountApplication.self, field: fieldName, value: fieldValue) | ||
} | ||
return value | ||
|
||
case "value": | ||
guard let value = value as? [String: Any] else { | ||
throw SchemaViolationError(type: AutomaticDiscountApplication.self, field: fieldName, value: fieldValue) | ||
} | ||
return try UnknownPricingValue.create(fields: value) | ||
|
||
default: | ||
throw SchemaViolationError(type: AutomaticDiscountApplication.self, field: fieldName, value: fieldValue) | ||
} | ||
} | ||
|
||
/// The method by which the discount's value is allocated to its entitled | ||
/// items. | ||
open var allocationMethod: Storefront.DiscountApplicationAllocationMethod { | ||
return internalGetAllocationMethod() | ||
} | ||
|
||
func internalGetAllocationMethod(alias: String? = nil) -> Storefront.DiscountApplicationAllocationMethod { | ||
return field(field: "allocationMethod", aliasSuffix: alias) as! Storefront.DiscountApplicationAllocationMethod | ||
} | ||
|
||
/// Which lines of targetType that the discount is allocated over. | ||
open var targetSelection: Storefront.DiscountApplicationTargetSelection { | ||
return internalGetTargetSelection() | ||
} | ||
|
||
func internalGetTargetSelection(alias: String? = nil) -> Storefront.DiscountApplicationTargetSelection { | ||
return field(field: "targetSelection", aliasSuffix: alias) as! Storefront.DiscountApplicationTargetSelection | ||
} | ||
|
||
/// The type of line that the discount is applicable towards. | ||
open var targetType: Storefront.DiscountApplicationTargetType { | ||
return internalGetTargetType() | ||
} | ||
|
||
func internalGetTargetType(alias: String? = nil) -> Storefront.DiscountApplicationTargetType { | ||
return field(field: "targetType", aliasSuffix: alias) as! Storefront.DiscountApplicationTargetType | ||
} | ||
|
||
/// The title of the application. | ||
open var title: String { | ||
return internalGetTitle() | ||
} | ||
|
||
func internalGetTitle(alias: String? = nil) -> String { | ||
return field(field: "title", aliasSuffix: alias) as! String | ||
} | ||
|
||
/// The value of the discount application. | ||
open var value: PricingValue { | ||
return internalGetValue() | ||
} | ||
|
||
func internalGetValue(alias: String? = nil) -> PricingValue { | ||
return field(field: "value", aliasSuffix: alias) as! PricingValue | ||
} | ||
|
||
internal override func childResponseObjectMap() -> [GraphQL.AbstractResponse] { | ||
return [] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.