All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.dysmsapi20170525.models.DeleteShortUrlRequest Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dysmsapi20170525.models;

import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link DeleteShortUrlRequest} extends {@link RequestModel}
 *
 * 

DeleteShortUrlRequest

*/ public class DeleteShortUrlRequest extends Request { @Query @NameInMap("OwnerId") private Long ownerId; @Query @NameInMap("ResourceOwnerAccount") private String resourceOwnerAccount; @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; @Body @NameInMap("SourceUrl") @Validation(required = true) private String sourceUrl; private DeleteShortUrlRequest(Builder builder) { super(builder); this.ownerId = builder.ownerId; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.resourceOwnerId = builder.resourceOwnerId; this.sourceUrl = builder.sourceUrl; } public static Builder builder() { return new Builder(); } public static DeleteShortUrlRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return sourceUrl */ public String getSourceUrl() { return this.sourceUrl; } public static final class Builder extends Request.Builder { private Long ownerId; private String resourceOwnerAccount; private Long resourceOwnerId; private String sourceUrl; private Builder() { super(); } private Builder(DeleteShortUrlRequest response) { super(response); this.ownerId = response.ownerId; this.resourceOwnerAccount = response.resourceOwnerAccount; this.resourceOwnerId = response.resourceOwnerId; this.sourceUrl = response.sourceUrl; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * ResourceOwnerAccount. */ public Builder resourceOwnerAccount(String resourceOwnerAccount) { this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); this.resourceOwnerAccount = resourceOwnerAccount; return this; } /** * ResourceOwnerId. */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * SourceUrl. */ public Builder sourceUrl(String sourceUrl) { this.putBodyParameter("SourceUrl", sourceUrl); this.sourceUrl = sourceUrl; return this; } @Override public DeleteShortUrlRequest build() { return new DeleteShortUrlRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy