@doordeck/doordeck-headless-sdk 0.144.0 → 0.145.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -2460,15 +2460,16 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2460
2460
|
}
|
|
2461
2461
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
2462
2462
|
class SiteResponse {
|
|
2463
|
-
constructor(id: string, name: string, longitude: number, latitude: number, radius: number, created: string, updated: string);
|
|
2463
|
+
constructor(id: string, name: string, colour: string, longitude: number, latitude: number, radius: number, created: string, updated: string);
|
|
2464
2464
|
get id(): string;
|
|
2465
2465
|
get name(): string;
|
|
2466
|
+
get colour(): string;
|
|
2466
2467
|
get longitude(): number;
|
|
2467
2468
|
get latitude(): number;
|
|
2468
2469
|
get radius(): number;
|
|
2469
2470
|
get created(): string;
|
|
2470
2471
|
get updated(): string;
|
|
2471
|
-
copy(id?: string, name?: string, longitude?: number, latitude?: number, radius?: number, created?: string, updated?: string): com.doordeck.multiplatform.sdk.model.responses.SiteResponse;
|
|
2472
|
+
copy(id?: string, name?: string, colour?: string, longitude?: number, latitude?: number, radius?: number, created?: string, updated?: string): com.doordeck.multiplatform.sdk.model.responses.SiteResponse;
|
|
2472
2473
|
toString(): string;
|
|
2473
2474
|
hashCode(): number;
|
|
2474
2475
|
equals(other: Nullable<any>): boolean;
|